@agwab/pi-workflow 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +218 -0
- package/agents/researcher.md +50 -0
- package/agents/scout.md +23 -0
- package/dist/agents.d.ts +10 -0
- package/dist/agents.js +327 -0
- package/dist/artifact-graph-runtime.d.ts +46 -0
- package/dist/artifact-graph-runtime.js +728 -0
- package/dist/artifact-graph-schema.d.ts +3 -0
- package/dist/artifact-graph-schema.js +1389 -0
- package/dist/backend.d.ts +18 -0
- package/dist/backend.js +19 -0
- package/dist/compiler.d.ts +13 -0
- package/dist/compiler.js +1247 -0
- package/dist/dynamic-control-ops.d.ts +60 -0
- package/dist/dynamic-control-ops.js +609 -0
- package/dist/dynamic-controller-calls.d.ts +45 -0
- package/dist/dynamic-controller-calls.js +384 -0
- package/dist/dynamic-controller-errors.d.ts +10 -0
- package/dist/dynamic-controller-errors.js +20 -0
- package/dist/dynamic-controller-policy.d.ts +30 -0
- package/dist/dynamic-controller-policy.js +244 -0
- package/dist/dynamic-decision-loop.d.ts +3 -0
- package/dist/dynamic-decision-loop.js +244 -0
- package/dist/dynamic-decision.d.ts +103 -0
- package/dist/dynamic-decision.js +511 -0
- package/dist/dynamic-events.d.ts +26 -0
- package/dist/dynamic-events.js +130 -0
- package/dist/dynamic-generated-task-runtime.d.ts +55 -0
- package/dist/dynamic-generated-task-runtime.js +620 -0
- package/dist/dynamic-loader.d.ts +25 -0
- package/dist/dynamic-loader.js +13 -0
- package/dist/dynamic-loop-actions.d.ts +9 -0
- package/dist/dynamic-loop-actions.js +148 -0
- package/dist/dynamic-loop-prompts.d.ts +14 -0
- package/dist/dynamic-loop-prompts.js +102 -0
- package/dist/dynamic-loop-types.d.ts +173 -0
- package/dist/dynamic-loop-types.js +1 -0
- package/dist/dynamic-profiles.d.ts +8 -0
- package/dist/dynamic-profiles.js +31 -0
- package/dist/dynamic-runtime-bundle.d.ts +2 -0
- package/dist/dynamic-runtime-bundle.js +153 -0
- package/dist/dynamic-state-index.d.ts +143 -0
- package/dist/dynamic-state-index.js +675 -0
- package/dist/dynamic-state.d.ts +94 -0
- package/dist/dynamic-state.js +516 -0
- package/dist/engine-run-graph.d.ts +21 -0
- package/dist/engine-run-graph.js +339 -0
- package/dist/engine.d.ts +40 -0
- package/dist/engine.js +1885 -0
- package/dist/extension.d.ts +28 -0
- package/dist/extension.js +1014 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +34 -0
- package/dist/json-schema.d.ts +35 -0
- package/dist/json-schema.js +293 -0
- package/dist/loop-runtime.d.ts +4 -0
- package/dist/loop-runtime.js +525 -0
- package/dist/process-role.d.ts +7 -0
- package/dist/process-role.js +30 -0
- package/dist/result.d.ts +10 -0
- package/dist/result.js +33 -0
- package/dist/roles.d.ts +4 -0
- package/dist/roles.js +94 -0
- package/dist/schema.d.ts +8 -0
- package/dist/schema.js +95 -0
- package/dist/store.d.ts +56 -0
- package/dist/store.js +1159 -0
- package/dist/subagent-backend.d.ts +6 -0
- package/dist/subagent-backend.js +1118 -0
- package/dist/tool-metadata.d.ts +35 -0
- package/dist/tool-metadata.js +192 -0
- package/dist/types.d.ts +701 -0
- package/dist/types.js +25 -0
- package/dist/workflow-artifact-extension.d.ts +11 -0
- package/dist/workflow-artifact-extension.js +104 -0
- package/dist/workflow-artifact-tool.d.ts +136 -0
- package/dist/workflow-artifact-tool.js +558 -0
- package/dist/workflow-artifacts.d.ts +93 -0
- package/dist/workflow-artifacts.js +351 -0
- package/dist/workflow-fetch-cache-extension.d.ts +37 -0
- package/dist/workflow-fetch-cache-extension.js +240 -0
- package/dist/workflow-helpers.d.ts +23 -0
- package/dist/workflow-helpers.js +59 -0
- package/dist/workflow-output-artifacts.d.ts +93 -0
- package/dist/workflow-output-artifacts.js +1052 -0
- package/dist/workflow-runtime.d.ts +54 -0
- package/dist/workflow-runtime.js +148 -0
- package/dist/workflow-source-context-runtime.d.ts +23 -0
- package/dist/workflow-source-context-runtime.js +108 -0
- package/dist/workflow-specs.d.ts +16 -0
- package/dist/workflow-specs.js +198 -0
- package/dist/workflow-view.d.ts +94 -0
- package/dist/workflow-view.js +1525 -0
- package/dist/worktree.d.ts +2 -0
- package/dist/worktree.js +410 -0
- package/docs/assets/readme/deep-research-flow.png +0 -0
- package/docs/assets/readme/deep-review-flow.png +0 -0
- package/docs/assets/readme/impact-review-flow.png +0 -0
- package/docs/assets/readme/logo.svg +14 -0
- package/docs/assets/readme/spec-review-flow.png +0 -0
- package/docs/assets/readme/stage-types.png +0 -0
- package/docs/assets/readme/workflow-board-runs.png +0 -0
- package/docs/assets/readme/workflow-board-stages.png +0 -0
- package/docs/assets/readme/workflow-board-task-detail.png +0 -0
- package/docs/assets/readme/workflow-board-tasks.png +0 -0
- package/docs/release.md +89 -0
- package/docs/usage.md +605 -0
- package/node_modules/@agwab/pi-subagent/LICENSE +21 -0
- package/node_modules/@agwab/pi-subagent/README.md +150 -0
- package/node_modules/@agwab/pi-subagent/api.mjs +12 -0
- package/node_modules/@agwab/pi-subagent/assets/subagent-panel.png +0 -0
- package/node_modules/@agwab/pi-subagent/docs/usage.md +414 -0
- package/node_modules/@agwab/pi-subagent/package.json +104 -0
- package/node_modules/@agwab/pi-subagent/src/agents.ts +281 -0
- package/node_modules/@agwab/pi-subagent/src/api.ts +190 -0
- package/node_modules/@agwab/pi-subagent/src/artifacts/index.ts +3 -0
- package/node_modules/@agwab/pi-subagent/src/artifacts/registry.ts +728 -0
- package/node_modules/@agwab/pi-subagent/src/artifacts/result.ts +212 -0
- package/node_modules/@agwab/pi-subagent/src/artifacts/store.ts +175 -0
- package/node_modules/@agwab/pi-subagent/src/core/constants.ts +161 -0
- package/node_modules/@agwab/pi-subagent/src/core/resolver.ts +20 -0
- package/node_modules/@agwab/pi-subagent/src/core/validation.ts +520 -0
- package/node_modules/@agwab/pi-subagent/src/index.ts +680 -0
- package/node_modules/@agwab/pi-subagent/src/orchestrate/async.ts +188 -0
- package/node_modules/@agwab/pi-subagent/src/orchestrate/index.ts +4 -0
- package/node_modules/@agwab/pi-subagent/src/orchestrate/interrupt.ts +111 -0
- package/node_modules/@agwab/pi-subagent/src/orchestrate/reconcile.ts +98 -0
- package/node_modules/@agwab/pi-subagent/src/orchestrate/run.ts +251 -0
- package/node_modules/@agwab/pi-subagent/src/orchestrate/status.ts +364 -0
- package/node_modules/@agwab/pi-subagent/src/panel.ts +678 -0
- package/node_modules/@agwab/pi-subagent/src/runners/headless-model.ts +510 -0
- package/node_modules/@agwab/pi-subagent/src/runners/inline.ts +387 -0
- package/node_modules/@agwab/pi-subagent/src/runners/tmux.ts +320 -0
- package/node_modules/@agwab/pi-subagent/src/runners/tool-call-telemetry.ts +363 -0
- package/node_modules/@agwab/pi-subagent/src/sandbox/srt.ts +143 -0
- package/node_modules/@agwab/pi-subagent/src/workers/durable-worker.mjs +69 -0
- package/node_modules/@agwab/pi-subagent/src/workspace/worktree.ts +182 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/LICENSE +201 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/README.md +673 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/cli.d.ts +3 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/cli.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/cli.js +253 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/cli.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/index.d.ts +16 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/index.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/index.js +12 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/index.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/generate-seccomp-filter.d.ts +20 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/generate-seccomp-filter.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/generate-seccomp-filter.js +157 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/generate-seccomp-filter.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/http-proxy.d.ts +40 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/http-proxy.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/http-proxy.js +282 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/http-proxy.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/linux-sandbox-utils.d.ts +175 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/linux-sandbox-utils.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/linux-sandbox-utils.js +984 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/linux-sandbox-utils.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/macos-sandbox-utils.d.ts +44 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/macos-sandbox-utils.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/macos-sandbox-utils.js +680 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/macos-sandbox-utils.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/mitm-ca.d.ts +47 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/mitm-ca.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/mitm-ca.js +153 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/mitm-ca.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/mitm-leaf.d.ts +28 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/mitm-leaf.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/mitm-leaf.js +107 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/mitm-leaf.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/parent-proxy.d.ts +117 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/parent-proxy.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/parent-proxy.js +438 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/parent-proxy.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/request-filter.d.ts +46 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/request-filter.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/request-filter.js +106 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/request-filter.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-config.d.ts +502 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-config.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-config.js +320 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-config.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-manager.d.ts +49 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-manager.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-manager.js +1023 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-manager.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-schemas.d.ts +57 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-schemas.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-schemas.js +3 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-schemas.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-utils.d.ts +114 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-utils.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-utils.js +472 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-utils.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-violation-store.d.ts +19 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-violation-store.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-violation-store.js +54 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/sandbox-violation-store.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/socks-proxy.d.ts +20 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/socks-proxy.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/socks-proxy.js +171 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/socks-proxy.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/tls-terminate-proxy.d.ts +70 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/tls-terminate-proxy.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/tls-terminate-proxy.js +217 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/tls-terminate-proxy.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/windows-sandbox-utils.d.ts +222 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/windows-sandbox-utils.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/windows-sandbox-utils.js +433 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/sandbox/windows-sandbox-utils.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/config-loader.d.ts +11 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/config-loader.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/config-loader.js +60 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/config-loader.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/debug.d.ts +7 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/debug.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/debug.js +25 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/debug.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/platform.d.ts +15 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/platform.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/platform.js +49 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/platform.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/ripgrep.d.ts +22 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/ripgrep.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/ripgrep.js +45 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/ripgrep.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/which.d.ts +9 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/which.d.ts.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/which.js +25 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/utils/which.js.map +1 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/seccomp/arm64/apply-seccomp +0 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/seccomp/build.ts +91 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/seccomp/x64/apply-seccomp +0 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/seccomp-src/apply-seccomp.c +280 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/seccomp-src/seccomp-unix-block.c +148 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/Cargo.lock +361 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/Cargo.toml +46 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/ci/cleanup.ps1 +49 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/ci/smoke-exec.ps1 +446 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/ci/smoke.ps1 +307 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/job.rs +102 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/launch.rs +732 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/lib.rs +20 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/main.rs +669 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/self_protect.rs +169 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/sid.rs +296 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/token.rs +341 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/util.rs +42 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/wfp.rs +992 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/src/winsta.rs +209 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/dist/vendor/srt-win/tests/sd_access_check_matrix.rs +259 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/package.json +85 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/seccomp/arm64/apply-seccomp +0 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/seccomp/build.ts +91 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/seccomp/x64/apply-seccomp +0 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/seccomp-src/apply-seccomp.c +280 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/seccomp-src/seccomp-unix-block.c +148 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/Cargo.lock +361 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/Cargo.toml +46 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/ci/cleanup.ps1 +49 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/ci/smoke-exec.ps1 +446 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/ci/smoke.ps1 +307 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/job.rs +102 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/launch.rs +732 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/lib.rs +20 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/main.rs +669 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/self_protect.rs +169 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/sid.rs +296 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/token.rs +341 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/util.rs +42 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/wfp.rs +992 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/src/winsta.rs +209 -0
- package/node_modules/@anthropic-ai/sandbox-runtime/vendor/srt-win/tests/sd_access_check_matrix.rs +259 -0
- package/node_modules/@mixmark-io/domino/.gitmodules +6 -0
- package/node_modules/@mixmark-io/domino/.mocharc.json +8 -0
- package/node_modules/@mixmark-io/domino/.nvmrc +1 -0
- package/node_modules/@mixmark-io/domino/.yarn/plugins/@yarnpkg/plugin-version.cjs +550 -0
- package/node_modules/@mixmark-io/domino/.yarn/versions/78b6ef77.yml +0 -0
- package/node_modules/@mixmark-io/domino/CHANGELOG.md +294 -0
- package/node_modules/@mixmark-io/domino/CONTRIBUTING.md +4 -0
- package/node_modules/@mixmark-io/domino/LICENSE +25 -0
- package/node_modules/@mixmark-io/domino/README.md +141 -0
- package/node_modules/@mixmark-io/domino/lib/CSSStyleDeclaration.js +234 -0
- package/node_modules/@mixmark-io/domino/lib/CharacterData.js +120 -0
- package/node_modules/@mixmark-io/domino/lib/ChildNode.js +119 -0
- package/node_modules/@mixmark-io/domino/lib/Comment.js +40 -0
- package/node_modules/@mixmark-io/domino/lib/ContainerNode.js +80 -0
- package/node_modules/@mixmark-io/domino/lib/CustomEvent.js +12 -0
- package/node_modules/@mixmark-io/domino/lib/DOMException.js +134 -0
- package/node_modules/@mixmark-io/domino/lib/DOMImplementation.js +94 -0
- package/node_modules/@mixmark-io/domino/lib/DOMTokenList.js +186 -0
- package/node_modules/@mixmark-io/domino/lib/Document.js +884 -0
- package/node_modules/@mixmark-io/domino/lib/DocumentFragment.js +71 -0
- package/node_modules/@mixmark-io/domino/lib/DocumentType.js +36 -0
- package/node_modules/@mixmark-io/domino/lib/Element.js +1228 -0
- package/node_modules/@mixmark-io/domino/lib/Event.js +66 -0
- package/node_modules/@mixmark-io/domino/lib/EventTarget.js +298 -0
- package/node_modules/@mixmark-io/domino/lib/FilteredElementList.js +92 -0
- package/node_modules/@mixmark-io/domino/lib/HTMLParser.js +7254 -0
- package/node_modules/@mixmark-io/domino/lib/Leaf.js +37 -0
- package/node_modules/@mixmark-io/domino/lib/LinkedList.js +44 -0
- package/node_modules/@mixmark-io/domino/lib/Location.js +56 -0
- package/node_modules/@mixmark-io/domino/lib/MouseEvent.js +52 -0
- package/node_modules/@mixmark-io/domino/lib/MutationConstants.js +9 -0
- package/node_modules/@mixmark-io/domino/lib/NamedNodeMap.js +41 -0
- package/node_modules/@mixmark-io/domino/lib/NavigatorID.js +17 -0
- package/node_modules/@mixmark-io/domino/lib/Node.js +764 -0
- package/node_modules/@mixmark-io/domino/lib/NodeFilter.js +24 -0
- package/node_modules/@mixmark-io/domino/lib/NodeIterator.js +217 -0
- package/node_modules/@mixmark-io/domino/lib/NodeList.es5.js +15 -0
- package/node_modules/@mixmark-io/domino/lib/NodeList.es6.js +12 -0
- package/node_modules/@mixmark-io/domino/lib/NodeList.js +13 -0
- package/node_modules/@mixmark-io/domino/lib/NodeTraversal.js +87 -0
- package/node_modules/@mixmark-io/domino/lib/NodeUtils.js +246 -0
- package/node_modules/@mixmark-io/domino/lib/NonDocumentTypeChildNode.js +26 -0
- package/node_modules/@mixmark-io/domino/lib/ProcessingInstruction.js +44 -0
- package/node_modules/@mixmark-io/domino/lib/Text.js +75 -0
- package/node_modules/@mixmark-io/domino/lib/TreeWalker.js +336 -0
- package/node_modules/@mixmark-io/domino/lib/UIEvent.js +19 -0
- package/node_modules/@mixmark-io/domino/lib/URL.js +194 -0
- package/node_modules/@mixmark-io/domino/lib/URLUtils.js +270 -0
- package/node_modules/@mixmark-io/domino/lib/Window.js +60 -0
- package/node_modules/@mixmark-io/domino/lib/WindowTimers.js +11 -0
- package/node_modules/@mixmark-io/domino/lib/attributes.js +152 -0
- package/node_modules/@mixmark-io/domino/lib/config.js +7 -0
- package/node_modules/@mixmark-io/domino/lib/defineElement.js +71 -0
- package/node_modules/@mixmark-io/domino/lib/events.js +7 -0
- package/node_modules/@mixmark-io/domino/lib/htmlelts.js +1499 -0
- package/node_modules/@mixmark-io/domino/lib/impl.js +27 -0
- package/node_modules/@mixmark-io/domino/lib/index.d.ts +5 -0
- package/node_modules/@mixmark-io/domino/lib/index.js +80 -0
- package/node_modules/@mixmark-io/domino/lib/select.js +933 -0
- package/node_modules/@mixmark-io/domino/lib/style_parser.js +106 -0
- package/node_modules/@mixmark-io/domino/lib/svg.js +59 -0
- package/node_modules/@mixmark-io/domino/lib/utils.js +85 -0
- package/node_modules/@mixmark-io/domino/lib/xmlnames.js +91 -0
- package/node_modules/@mixmark-io/domino/package.json +22 -0
- package/node_modules/@mixmark-io/domino/test/domino.js +1500 -0
- package/node_modules/@mixmark-io/domino/test/fixture/doc.html +13 -0
- package/node_modules/@mixmark-io/domino/test/fixture/jquery-1.9.1.js +9597 -0
- package/node_modules/@mixmark-io/domino/test/fixture/jquery-2.2.0.js +9831 -0
- package/node_modules/@mixmark-io/domino/test/html5lib-tests.json +80692 -0
- package/node_modules/@mixmark-io/domino/test/index.js +2 -0
- package/node_modules/@mixmark-io/domino/test/parsing.js +66 -0
- package/node_modules/@mixmark-io/domino/test/tools/update-entities.js +90 -0
- package/node_modules/@mixmark-io/domino/test/tools/update-html5lib-tests.js +355 -0
- package/node_modules/@mixmark-io/domino/test/w3c/README.md +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/harness/DomTestCase.js +438 -0
- package/node_modules/@mixmark-io/domino/test/w3c/harness/index.js +95 -0
- package/node_modules/@mixmark-io/domino/test/w3c/index.js +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentgetdoctypenodtd.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentinvalidcharacterexceptioncreatepi.js +143 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/documentinvalidcharacterexceptioncreatepi1.js +140 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/.cvsignore +0 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/hc_nodtdstaff.html +10 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/hc_staff.html +48 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/files/staff.dtd +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataappenddata.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataappenddatagetdata.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatabegining.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedataend.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedataexceedslength.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatagetlengthanddata.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatadeletedatamiddle.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatagetdata.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatagetlength.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedatacountnegative.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedataoffsetgreater.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrdeletedataoffsetnegative.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrinsertdataoffsetgreater.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrinsertdataoffsetnegative.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedatacountnegative.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedataoffsetgreater.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrreplacedataoffsetnegative.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringcountnegative.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringnegativeoffset.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdataindexsizeerrsubstringoffsetgreater.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdatabeginning.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdataend.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatainsertdatamiddle.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedatabegining.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataend.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataexceedslengthofarg.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedataexceedslengthofdata.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatareplacedatamiddle.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasetnodevalue.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasubstringexceedsvalue.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_characterdatasubstringvalue.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_commentgetcomment.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatecomment.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatedocumentfragment.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreateelement.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreateelementcasesensitive.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentcreatetextnode.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetdoctype.js +149 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnamelength.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnametotallength.js +221 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetelementsbytagnamevalue.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetimplementation.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentgetrootnode.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentinvalidcharacterexceptioncreateelement.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_documentinvalidcharacterexceptioncreateelement1.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturenoversion.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturenull.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_domimplementationfeaturexml.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementaddnewattribute.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementchangeattributevalue.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagname.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnameaccessnodelist.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnamenomatch.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgetelementsbytagnamespecialvalue.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementgettagname.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementinvalidcharacterexception.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementinvalidcharacterexception1.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementnormalize.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementremoveattribute.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrieveallattributes.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrieveattrvalue.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_elementretrievetagname.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_entitiesremovenameditem1.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_entitiessetnameditem1.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_namednodemapchildnoderange.js +141 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_namednodemapnumberofnodes.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchild.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildchildexists.js +160 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchilddocfragment.js +158 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildgetnodename.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildnewchilddiffdocument.js +145 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeappendchildnodeancestor.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeattributenodeattribute.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodes.js +149 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodesappendchild.js +159 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodechildnodesempty.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecloneattributescopied.js +149 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonefalsenocopytext.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonegetparentnull.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonenodefalse.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonenodetrue.js +145 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeclonetruecopytext.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodeattributes.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodename.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodetype.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodecommentnodevalue.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodename.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodetype.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentfragmentnodevalue.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodeattribute.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodename.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodetype.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodedocumentnodevalue.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodeattributes.js +145 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodename.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodetype.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeelementnodevalue.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetfirstchild.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetfirstchildnull.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetlastchild.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetlastchildnull.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetnextsibling.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetnextsiblingnull.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetownerdocument.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetownerdocumentnull.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetprevioussibling.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodegetprevioussiblingnull.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodehaschildnodes.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodehaschildnodesfalse.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbefore.js +153 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforedocfragment.js +141 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenewchilddiffdocument.js +148 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenewchildexists.js +151 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenodeancestor.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforenodename.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforerefchildnonexistent.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeinsertbeforerefchildnull.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexequalzero.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexgetlength.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexgetlengthofemptylist.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistindexnotzero.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistreturnfirstitem.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelistreturnlastitem.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodelisttraverselist.js +149 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeparentnode.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodeparentnodenull.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechild.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildgetnodename.js +128 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildnode.js +160 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_noderemovechildoldchildnonexistent.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechild.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnewchilddiffdocument.js +148 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnewchildexists.js +155 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnodeancestor.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildnodename.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodereplacechildoldchildnonexistent.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodeattribute.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodename.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodetype.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodetextnodevalue.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue04.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue06.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue07.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_nodevalue08.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_notationsremovenameditem1.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_notationssetnameditem1.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textindexsizeerrnegativeoffset.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textindexsizeerroffsetoutofbounds.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textparseintolistofelements.js +169 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextfour.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextone.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittextthree.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textsplittexttwo.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/hc_textwithnomarkup.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/documentinvalidcharacterexceptioncreateentref.js +143 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/documentinvalidcharacterexceptioncreateentref1.js +140 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild1.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild2.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild3.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild4.js +152 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild5.js +141 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrappendchild6.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrchildnodes1.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrchildnodes2.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrclonenode1.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatedocumentfragment.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatetextnode.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrcreatetextnode2.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attreffectivevalue.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrfirstchild.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrgetvalue1.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrgetvalue2.js +146 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrhaschildnodes.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore1.js +140 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore2.js +141 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore3.js +146 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore4.js +147 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore5.js +153 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore6.js +142 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrinsertbefore7.js +160 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrlastchild.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrname.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrnextsiblingnull.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrnormalize.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrparentnodenull.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrprevioussiblingnull.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrremovechild1.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrremovechild2.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrreplacechild1.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrreplacechild2.js +141 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrsetvalue1.js +135 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrsetvalue2.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrspecifiedvalue.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_attrspecifiedvaluechanged.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentcreateattribute.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentinvalidcharacterexceptioncreateattribute.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_documentinvalidcharacterexceptioncreateattribute1.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementassociatedattribute.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementcreatenewattribute.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetattributenode.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetattributenodenull.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementgetelementempty.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementinuseattributeerr.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementnormalize2.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementnotfounderr.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementremoveattributeaftercreate.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementremoveattributenode.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceattributewithself.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceexistingattribute.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementreplaceexistingattributegevalue.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementsetattributenodenull.js +120 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_elementwrongdocumenterr.js +147 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapgetnameditem.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapinuseattributeerr.js +139 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapnotfounderr.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapremovenameditem.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnattrnode.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnfirstitem.js +150 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnlastitem.js +152 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapreturnnull.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditem.js +131 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemreturnvalue.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemthatexists.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapsetnameditemwithnewvalue.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_namednodemapwrongdocumenterr.js +149 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeappendchildinvalidnodetype.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodename.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodetype.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeattributenodevalue.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodeinsertbeforeinvalidnodetype.js +136 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodereplacechildinvalidnodetype.js +136 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/core/obsolete/hc_nodevalue03.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement10.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement11.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement12.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement13.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAnchorElement14.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement07.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLAreaElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement01.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement06.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLButtonElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument01.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument15.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument16.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument17.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument18.js +102 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument19.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument20.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLDocument21.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement09.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement10.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement100.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement101.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement102.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement103.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement104.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement105.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement106.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement107.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement108.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement109.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement11.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement110.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement111.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement112.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement113.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement114.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement115.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement116.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement117.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement118.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement119.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement12.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement120.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement121.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement122.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement123.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement124.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement125.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement126.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement127.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement128.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement129.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement13.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement130.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement131.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement132.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement133.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement134.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement135.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement136.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement137.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement138.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement139.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement14.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement140.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement141.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement142.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement143.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement144.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement145.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement15.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement16.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement17.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement18.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement19.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement20.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement21.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement22.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement23.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement24.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement25.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement26.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement27.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement28.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement29.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement30.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement31.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement32.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement33.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement34.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement35.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement36.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement37.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement38.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement39.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement40.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement41.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement42.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement43.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement44.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement45.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement46.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement47.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement48.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement49.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement50.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement51.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement52.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement53.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement54.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement55.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement56.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement57.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement58.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement59.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement60.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement61.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement62.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement63.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement64.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement65.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement66.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement67.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement68.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement69.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement70.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement71.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement72.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement73.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement74.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement75.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement76.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement77.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement78.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement79.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement80.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement81.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement82.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement83.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement84.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement85.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement86.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement87.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement88.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement89.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement90.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement91.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement92.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement93.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement94.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement95.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement96.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement97.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement98.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLElement99.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFieldSetElement01.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFieldSetElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLFormElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLIFrameElement10.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement05.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement06.js +128 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement09.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement11.js +128 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLImageElement12.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement03.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement05.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement11.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement13.js +130 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement14.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement15.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement16.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement18.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLInputElement21.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLIElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement01.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLabelElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLLinkElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMapElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLMetaElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLModElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOListElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOListElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement01.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement11.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement13.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement14.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement15.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement16.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement17.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement18.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLObjectElement19.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptGroupElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptGroupElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement01.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLOptionElement08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLParamElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLQuoteElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLQuoteElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement06.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLScriptElement07.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement03.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement06.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement08.js +134 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement09.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement11.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement12.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLSelectElement13.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLStyleElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement15.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement16.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement23.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement24.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableCellElement25.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableColElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableColElement08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement07.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableElement12.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableRowElement05.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement13.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement14.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTableSectionElement15.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement02.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTextAreaElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/HTMLTitleElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor01.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor04.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/anchor05.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area01.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area02.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area03.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/area04.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button01.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button05.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button06.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button07.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button08.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/button09.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/doc01.js +106 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/.cvsignore +6 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/HTMLDocument04.html +36 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/anchor.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/anchor2.html +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/applet.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/applet2.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/area.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/area2.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/base.html +11 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/base2.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/basefont.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/body.html +10 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/br.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/button.html +21 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/collection.html +79 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/directory.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/div.html +10 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/dl.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/document.html +36 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/element.html +81 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/fieldset.html +23 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/font.html +10 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form.html +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form2.html +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/form3.html +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/frame.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/frameset.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/head.html +11 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/heading.html +16 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/hr.html +11 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/html.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/iframe.html +10 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/img.html +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/input.html +60 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/isindex.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/label.html +21 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/legend.html +22 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/li.html +23 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/link.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/link2.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/map.html +16 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/menu.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/meta.html +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/mod.html +15 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/object.html +18 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/object2.html +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/olist.html +32 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/optgroup.html +25 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/option.html +36 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/paragraph.html +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/param.html +14 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/pre.html +17 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/quote.html +16 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/script.html +11 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/select.html +44 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/style.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/table.html +78 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/table1.html +12 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecaption.html +25 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecell.html +23 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablecol.html +35 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablerow.html +59 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/tablesection.html +62 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/textarea.html +26 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/title.html +13 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/files/ulist.html +36 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/hasFeature01.js +96 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument02.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument03.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument04.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument10.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLDocument12.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement01.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement09.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLFormElement10.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement19.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement20.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLInputElement22.js +108 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement14.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement15.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement16.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement17.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement18.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLSelectElement19.js +137 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement08.js +129 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement09.js +132 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement19.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement20.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement21.js +139 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement22.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement23.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement24.js +139 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement25.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement26.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement27.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement28.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement29.js +137 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement30.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement31.js +138 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement32.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableElement33.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTableRowElement01.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement13.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement14.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/nyi/HTMLTextAreaElement15.js +107 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object01.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object07.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object08.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object10.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object11.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object12.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object13.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/object14.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAnchorElement09.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement07.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement08.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement09.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement10.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLAppletElement11.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBRElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBaseFontElement03.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLBodyElement06.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection01.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection02.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection03.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection04.js +133 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection05.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection06.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection07.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection08.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection09.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection10.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection11.js +123 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLCollection12.js +121 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDirectoryElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDivElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDlistElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument11.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument13.js +109 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLDocument14.js +110 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFontElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFormElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement01.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement05.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameSetElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLFrameSetElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHRElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement03.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement05.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHeadingElement06.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLHtmlElement01.js +124 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement02.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement06.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIFrameElement08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement10.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLImageElement14.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLInputElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLInputElement17.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement01.js +122 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement02.js +119 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLIsIndexElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLIElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement01.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLegendElement04.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement07.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLLinkElement09.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLMapElement01.js +116 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLMenuElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOListElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement09.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLObjectElement12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement05.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLOptionElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParagraphElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLParamElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLPreElement01.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCaptionElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement02.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement03.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement04.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement05.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement07.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement09.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement11.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement13.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement14.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement17.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement18.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement19.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement20.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement21.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement22.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement26.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement27.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement28.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement29.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableCellElement30.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement05.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement06.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement09.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement11.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableColElement12.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement01.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement03.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement05.js +117 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement11.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement13.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement14.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement15.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement16.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement17.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableElement18.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement07.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement11.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement12.js +143 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement13.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableRowElement14.js +144 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement05.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement07.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement08.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement09.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement11.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement16.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement17.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement18.js +126 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement19.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement20.js +127 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement21.js +128 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement22.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement23.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTableSectionElement24.js +125 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement01.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement11.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLTextAreaElement12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLUListElement01.js +114 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/HTMLUListElement02.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor02.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor03.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/anchor06.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/basefont01.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/body01.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/dlist01.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object02.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object03.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object04.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object05.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object09.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/object15.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table02.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table03.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table04.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table06.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table07.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table08.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table09.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table10.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table12.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table15.js +118 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table17.js +115 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table18.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table19.js +113 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table20.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table21.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table22.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table23.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table24.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table26.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table27.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table29.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table30.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table31.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table32.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table33.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table35.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table36.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table37.js +111 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table38.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table39.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table40.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table41.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table42.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table43.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table44.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table45.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table46.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table47.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table48.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table49.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table50.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table52.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/obsolete/table53.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table01.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table25.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table28.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table34.js +112 -0
- package/node_modules/@mixmark-io/domino/test/w3c/level1/html/table51.js +112 -0
- package/node_modules/@mixmark-io/domino/test/web-platform-blocklist.json +4688 -0
- package/node_modules/@mixmark-io/domino/test/web-platform-tests.js +353 -0
- package/node_modules/@mixmark-io/domino/test/xss.js +361 -0
- package/node_modules/@mozilla/readability/.eslintrc.js +213 -0
- package/node_modules/@mozilla/readability/CHANGELOG.md +79 -0
- package/node_modules/@mozilla/readability/CODE_OF_CONDUCT.md +15 -0
- package/node_modules/@mozilla/readability/CONTRIBUTING.md +74 -0
- package/node_modules/@mozilla/readability/JSDOMParser.js +1197 -0
- package/node_modules/@mozilla/readability/LICENSE.md +13 -0
- package/node_modules/@mozilla/readability/README.md +127 -0
- package/node_modules/@mozilla/readability/Readability-readerable.js +108 -0
- package/node_modules/@mozilla/readability/Readability.js +2314 -0
- package/node_modules/@mozilla/readability/SECURITY.md +8 -0
- package/node_modules/@mozilla/readability/index.d.ts +64 -0
- package/node_modules/@mozilla/readability/index.js +8 -0
- package/node_modules/@mozilla/readability/package.json +37 -0
- package/node_modules/@pondwader/socks5-server/.DS_Store +0 -0
- package/node_modules/@pondwader/socks5-server/.github/workflows/ci.yml +27 -0
- package/node_modules/@pondwader/socks5-server/LICENSE +20 -0
- package/node_modules/@pondwader/socks5-server/README.md +151 -0
- package/node_modules/@pondwader/socks5-server/dist/index.d.mts +87 -0
- package/node_modules/@pondwader/socks5-server/dist/index.d.ts +87 -0
- package/node_modules/@pondwader/socks5-server/dist/index.js +346 -0
- package/node_modules/@pondwader/socks5-server/dist/index.mjs +307 -0
- package/node_modules/@pondwader/socks5-server/package.json +31 -0
- package/node_modules/boolbase/README.md +10 -0
- package/node_modules/boolbase/index.js +8 -0
- package/node_modules/boolbase/package.json +23 -0
- package/node_modules/commander/.DS_Store +0 -0
- package/node_modules/commander/LICENSE +22 -0
- package/node_modules/commander/Readme.md +1157 -0
- package/node_modules/commander/esm.mjs +16 -0
- package/node_modules/commander/index.js +24 -0
- package/node_modules/commander/lib/argument.js +149 -0
- package/node_modules/commander/lib/command.js +2509 -0
- package/node_modules/commander/lib/error.js +39 -0
- package/node_modules/commander/lib/help.js +520 -0
- package/node_modules/commander/lib/option.js +330 -0
- package/node_modules/commander/lib/suggestSimilar.js +101 -0
- package/node_modules/commander/package-support.json +16 -0
- package/node_modules/commander/package.json +84 -0
- package/node_modules/commander/typings/esm.d.mts +3 -0
- package/node_modules/commander/typings/index.d.ts +969 -0
- package/node_modules/css-select/LICENSE +11 -0
- package/node_modules/css-select/README.md +264 -0
- package/node_modules/css-select/lib/attributes.d.ts +7 -0
- package/node_modules/css-select/lib/attributes.d.ts.map +1 -0
- package/node_modules/css-select/lib/attributes.js +236 -0
- package/node_modules/css-select/lib/attributes.js.map +1 -0
- package/node_modules/css-select/lib/compile.d.ts +13 -0
- package/node_modules/css-select/lib/compile.d.ts.map +1 -0
- package/node_modules/css-select/lib/compile.js +151 -0
- package/node_modules/css-select/lib/compile.js.map +1 -0
- package/node_modules/css-select/lib/esm/attributes.d.ts +7 -0
- package/node_modules/css-select/lib/esm/attributes.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/attributes.js +222 -0
- package/node_modules/css-select/lib/esm/attributes.js.map +1 -0
- package/node_modules/css-select/lib/esm/compile.d.ts +13 -0
- package/node_modules/css-select/lib/esm/compile.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/compile.js +115 -0
- package/node_modules/css-select/lib/esm/compile.js.map +1 -0
- package/node_modules/css-select/lib/esm/general.d.ts +3 -0
- package/node_modules/css-select/lib/esm/general.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/general.js +144 -0
- package/node_modules/css-select/lib/esm/general.js.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/cache.d.ts +12 -0
- package/node_modules/css-select/lib/esm/helpers/cache.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/cache.js +41 -0
- package/node_modules/css-select/lib/esm/helpers/cache.js.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/querying.d.ts +24 -0
- package/node_modules/css-select/lib/esm/helpers/querying.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/querying.js +105 -0
- package/node_modules/css-select/lib/esm/helpers/querying.js.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/selectors.d.ts +20 -0
- package/node_modules/css-select/lib/esm/helpers/selectors.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/helpers/selectors.js +103 -0
- package/node_modules/css-select/lib/esm/helpers/selectors.js.map +1 -0
- package/node_modules/css-select/lib/esm/index.d.ts +50 -0
- package/node_modules/css-select/lib/esm/index.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/index.js +115 -0
- package/node_modules/css-select/lib/esm/index.js.map +1 -0
- package/node_modules/css-select/lib/esm/package.json +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts +5 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js +35 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/filters.d.ts +4 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/filters.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/filters.js +143 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/filters.js.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/index.d.ts +8 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/index.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/index.js +40 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/index.js.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.d.ts +6 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js +79 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.d.ts +9 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js +94 -0
- package/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js.map +1 -0
- package/node_modules/css-select/lib/esm/sort.d.ts +12 -0
- package/node_modules/css-select/lib/esm/sort.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/sort.js +79 -0
- package/node_modules/css-select/lib/esm/sort.js.map +1 -0
- package/node_modules/css-select/lib/esm/types.d.ts +167 -0
- package/node_modules/css-select/lib/esm/types.d.ts.map +1 -0
- package/node_modules/css-select/lib/esm/types.js +2 -0
- package/node_modules/css-select/lib/esm/types.js.map +1 -0
- package/node_modules/css-select/lib/general.d.ts +3 -0
- package/node_modules/css-select/lib/general.d.ts.map +1 -0
- package/node_modules/css-select/lib/general.js +148 -0
- package/node_modules/css-select/lib/general.js.map +1 -0
- package/node_modules/css-select/lib/helpers/cache.d.ts +12 -0
- package/node_modules/css-select/lib/helpers/cache.d.ts.map +1 -0
- package/node_modules/css-select/lib/helpers/cache.js +45 -0
- package/node_modules/css-select/lib/helpers/cache.js.map +1 -0
- package/node_modules/css-select/lib/helpers/querying.d.ts +24 -0
- package/node_modules/css-select/lib/helpers/querying.d.ts.map +1 -0
- package/node_modules/css-select/lib/helpers/querying.js +111 -0
- package/node_modules/css-select/lib/helpers/querying.js.map +1 -0
- package/node_modules/css-select/lib/helpers/selectors.d.ts +20 -0
- package/node_modules/css-select/lib/helpers/selectors.d.ts.map +1 -0
- package/node_modules/css-select/lib/helpers/selectors.js +111 -0
- package/node_modules/css-select/lib/helpers/selectors.js.map +1 -0
- package/node_modules/css-select/lib/index.d.ts +50 -0
- package/node_modules/css-select/lib/index.d.ts.map +1 -0
- package/node_modules/css-select/lib/index.js +154 -0
- package/node_modules/css-select/lib/index.js.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/aliases.d.ts +5 -0
- package/node_modules/css-select/lib/pseudo-selectors/aliases.d.ts.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/aliases.js +34 -0
- package/node_modules/css-select/lib/pseudo-selectors/aliases.js.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/filters.d.ts +4 -0
- package/node_modules/css-select/lib/pseudo-selectors/filters.d.ts.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/filters.js +157 -0
- package/node_modules/css-select/lib/pseudo-selectors/filters.js.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/index.d.ts +8 -0
- package/node_modules/css-select/lib/pseudo-selectors/index.d.ts.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/index.js +46 -0
- package/node_modules/css-select/lib/pseudo-selectors/index.js.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts +6 -0
- package/node_modules/css-select/lib/pseudo-selectors/pseudos.d.ts.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/pseudos.js +93 -0
- package/node_modules/css-select/lib/pseudo-selectors/pseudos.js.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/subselects.d.ts +9 -0
- package/node_modules/css-select/lib/pseudo-selectors/subselects.d.ts.map +1 -0
- package/node_modules/css-select/lib/pseudo-selectors/subselects.js +112 -0
- package/node_modules/css-select/lib/pseudo-selectors/subselects.js.map +1 -0
- package/node_modules/css-select/lib/sort.d.ts +12 -0
- package/node_modules/css-select/lib/sort.d.ts.map +1 -0
- package/node_modules/css-select/lib/sort.js +84 -0
- package/node_modules/css-select/lib/sort.js.map +1 -0
- package/node_modules/css-select/lib/types.d.ts +167 -0
- package/node_modules/css-select/lib/types.d.ts.map +1 -0
- package/node_modules/css-select/lib/types.js +3 -0
- package/node_modules/css-select/lib/types.js.map +1 -0
- package/node_modules/css-select/package.json +81 -0
- package/node_modules/css-what/LICENSE +11 -0
- package/node_modules/css-what/lib/commonjs/index.d.ts +4 -0
- package/node_modules/css-what/lib/commonjs/index.d.ts.map +1 -0
- package/node_modules/css-what/lib/commonjs/index.js +23 -0
- package/node_modules/css-what/lib/commonjs/parse.d.ts +20 -0
- package/node_modules/css-what/lib/commonjs/parse.d.ts.map +1 -0
- package/node_modules/css-what/lib/commonjs/parse.js +425 -0
- package/node_modules/css-what/lib/commonjs/stringify.d.ts +8 -0
- package/node_modules/css-what/lib/commonjs/stringify.d.ts.map +1 -0
- package/node_modules/css-what/lib/commonjs/stringify.js +138 -0
- package/node_modules/css-what/lib/commonjs/types.d.ts +70 -0
- package/node_modules/css-what/lib/commonjs/types.d.ts.map +1 -0
- package/node_modules/css-what/lib/commonjs/types.js +42 -0
- package/node_modules/css-what/lib/es/index.d.ts +4 -0
- package/node_modules/css-what/lib/es/index.d.ts.map +1 -0
- package/node_modules/css-what/lib/es/index.js +3 -0
- package/node_modules/css-what/lib/es/parse.d.ts +20 -0
- package/node_modules/css-what/lib/es/parse.d.ts.map +1 -0
- package/node_modules/css-what/lib/es/parse.js +420 -0
- package/node_modules/css-what/lib/es/stringify.d.ts +8 -0
- package/node_modules/css-what/lib/es/stringify.d.ts.map +1 -0
- package/node_modules/css-what/lib/es/stringify.js +126 -0
- package/node_modules/css-what/lib/es/types.d.ts +70 -0
- package/node_modules/css-what/lib/es/types.d.ts.map +1 -0
- package/node_modules/css-what/lib/es/types.js +39 -0
- package/node_modules/css-what/package.json +59 -0
- package/node_modules/css-what/readme.md +69 -0
- package/node_modules/cssom/LICENSE.txt +20 -0
- package/node_modules/cssom/README.mdown +67 -0
- package/node_modules/cssom/lib/CSSConditionRule.js +25 -0
- package/node_modules/cssom/lib/CSSDocumentRule.js +39 -0
- package/node_modules/cssom/lib/CSSFontFaceRule.js +36 -0
- package/node_modules/cssom/lib/CSSGroupingRule.js +68 -0
- package/node_modules/cssom/lib/CSSHostRule.js +37 -0
- package/node_modules/cssom/lib/CSSImportRule.js +132 -0
- package/node_modules/cssom/lib/CSSKeyframeRule.js +37 -0
- package/node_modules/cssom/lib/CSSKeyframesRule.js +39 -0
- package/node_modules/cssom/lib/CSSMediaRule.js +53 -0
- package/node_modules/cssom/lib/CSSOM.js +3 -0
- package/node_modules/cssom/lib/CSSRule.js +43 -0
- package/node_modules/cssom/lib/CSSStyleDeclaration.js +148 -0
- package/node_modules/cssom/lib/CSSStyleRule.js +190 -0
- package/node_modules/cssom/lib/CSSStyleSheet.js +88 -0
- package/node_modules/cssom/lib/CSSSupportsRule.js +36 -0
- package/node_modules/cssom/lib/CSSValue.js +43 -0
- package/node_modules/cssom/lib/CSSValueExpression.js +344 -0
- package/node_modules/cssom/lib/MatcherList.js +62 -0
- package/node_modules/cssom/lib/MediaList.js +61 -0
- package/node_modules/cssom/lib/StyleSheet.js +17 -0
- package/node_modules/cssom/lib/clone.js +74 -0
- package/node_modules/cssom/lib/index.js +23 -0
- package/node_modules/cssom/lib/parse.js +465 -0
- package/node_modules/cssom/package.json +18 -0
- package/node_modules/dom-serializer/LICENSE +11 -0
- package/node_modules/dom-serializer/README.md +109 -0
- package/node_modules/dom-serializer/lib/esm/foreignNames.d.ts +3 -0
- package/node_modules/dom-serializer/lib/esm/foreignNames.d.ts.map +1 -0
- package/node_modules/dom-serializer/lib/esm/foreignNames.js +100 -0
- package/node_modules/dom-serializer/lib/esm/index.d.ts +52 -0
- package/node_modules/dom-serializer/lib/esm/index.d.ts.map +1 -0
- package/node_modules/dom-serializer/lib/esm/index.js +190 -0
- package/node_modules/dom-serializer/lib/esm/package.json +1 -0
- package/node_modules/dom-serializer/lib/foreignNames.d.ts +3 -0
- package/node_modules/dom-serializer/lib/foreignNames.d.ts.map +1 -0
- package/node_modules/dom-serializer/lib/foreignNames.js +103 -0
- package/node_modules/dom-serializer/lib/index.d.ts +52 -0
- package/node_modules/dom-serializer/lib/index.d.ts.map +1 -0
- package/node_modules/dom-serializer/lib/index.js +229 -0
- package/node_modules/dom-serializer/package.json +69 -0
- package/node_modules/domelementtype/LICENSE +11 -0
- package/node_modules/domelementtype/lib/esm/index.d.ts +48 -0
- package/node_modules/domelementtype/lib/esm/index.d.ts.map +1 -0
- package/node_modules/domelementtype/lib/esm/index.js +51 -0
- package/node_modules/domelementtype/lib/esm/package.json +1 -0
- package/node_modules/domelementtype/lib/index.d.ts +48 -0
- package/node_modules/domelementtype/lib/index.d.ts.map +1 -0
- package/node_modules/domelementtype/lib/index.js +55 -0
- package/node_modules/domelementtype/package.json +54 -0
- package/node_modules/domelementtype/readme.md +1 -0
- package/node_modules/domhandler/LICENSE +11 -0
- package/node_modules/domhandler/lib/esm/index.d.ts +76 -0
- package/node_modules/domhandler/lib/esm/index.d.ts.map +1 -0
- package/node_modules/domhandler/lib/esm/index.js +146 -0
- package/node_modules/domhandler/lib/esm/node.d.ts +245 -0
- package/node_modules/domhandler/lib/esm/node.d.ts.map +1 -0
- package/node_modules/domhandler/lib/esm/node.js +338 -0
- package/node_modules/domhandler/lib/esm/package.json +1 -0
- package/node_modules/domhandler/lib/index.d.ts +76 -0
- package/node_modules/domhandler/lib/index.d.ts.map +1 -0
- package/node_modules/domhandler/lib/index.js +165 -0
- package/node_modules/domhandler/lib/node.d.ts +245 -0
- package/node_modules/domhandler/lib/node.d.ts.map +1 -0
- package/node_modules/domhandler/lib/node.js +474 -0
- package/node_modules/domhandler/package.json +73 -0
- package/node_modules/domhandler/readme.md +92 -0
- package/node_modules/domutils/LICENSE +11 -0
- package/node_modules/domutils/lib/esm/feeds.d.ts +71 -0
- package/node_modules/domutils/lib/esm/feeds.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/feeds.js +183 -0
- package/node_modules/domutils/lib/esm/feeds.js.map +1 -0
- package/node_modules/domutils/lib/esm/helpers.d.ts +59 -0
- package/node_modules/domutils/lib/esm/helpers.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/helpers.js +136 -0
- package/node_modules/domutils/lib/esm/helpers.js.map +1 -0
- package/node_modules/domutils/lib/esm/index.d.ts +10 -0
- package/node_modules/domutils/lib/esm/index.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/index.js +10 -0
- package/node_modules/domutils/lib/esm/index.js.map +1 -0
- package/node_modules/domutils/lib/esm/legacy.d.ts +79 -0
- package/node_modules/domutils/lib/esm/legacy.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/legacy.js +152 -0
- package/node_modules/domutils/lib/esm/legacy.js.map +1 -0
- package/node_modules/domutils/lib/esm/manipulation.d.ts +49 -0
- package/node_modules/domutils/lib/esm/manipulation.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/manipulation.js +134 -0
- package/node_modules/domutils/lib/esm/manipulation.js.map +1 -0
- package/node_modules/domutils/lib/esm/package.json +1 -0
- package/node_modules/domutils/lib/esm/querying.d.ts +64 -0
- package/node_modules/domutils/lib/esm/querying.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/querying.js +142 -0
- package/node_modules/domutils/lib/esm/querying.js.map +1 -0
- package/node_modules/domutils/lib/esm/stringify.d.ts +46 -0
- package/node_modules/domutils/lib/esm/stringify.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/stringify.js +81 -0
- package/node_modules/domutils/lib/esm/stringify.js.map +1 -0
- package/node_modules/domutils/lib/esm/traversal.d.ts +67 -0
- package/node_modules/domutils/lib/esm/traversal.d.ts.map +1 -0
- package/node_modules/domutils/lib/esm/traversal.js +112 -0
- package/node_modules/domutils/lib/esm/traversal.js.map +1 -0
- package/node_modules/domutils/lib/feeds.d.ts +71 -0
- package/node_modules/domutils/lib/feeds.d.ts.map +1 -0
- package/node_modules/domutils/lib/feeds.js +190 -0
- package/node_modules/domutils/lib/feeds.js.map +1 -0
- package/node_modules/domutils/lib/helpers.d.ts +59 -0
- package/node_modules/domutils/lib/helpers.d.ts.map +1 -0
- package/node_modules/domutils/lib/helpers.js +142 -0
- package/node_modules/domutils/lib/helpers.js.map +1 -0
- package/node_modules/domutils/lib/index.d.ts +10 -0
- package/node_modules/domutils/lib/index.d.ts.map +1 -0
- package/node_modules/domutils/lib/index.js +33 -0
- package/node_modules/domutils/lib/index.js.map +1 -0
- package/node_modules/domutils/lib/legacy.d.ts +79 -0
- package/node_modules/domutils/lib/legacy.d.ts.map +1 -0
- package/node_modules/domutils/lib/legacy.js +168 -0
- package/node_modules/domutils/lib/legacy.js.map +1 -0
- package/node_modules/domutils/lib/manipulation.d.ts +49 -0
- package/node_modules/domutils/lib/manipulation.d.ts.map +1 -0
- package/node_modules/domutils/lib/manipulation.js +142 -0
- package/node_modules/domutils/lib/manipulation.js.map +1 -0
- package/node_modules/domutils/lib/querying.d.ts +64 -0
- package/node_modules/domutils/lib/querying.d.ts.map +1 -0
- package/node_modules/domutils/lib/querying.js +155 -0
- package/node_modules/domutils/lib/querying.js.map +1 -0
- package/node_modules/domutils/lib/stringify.d.ts +46 -0
- package/node_modules/domutils/lib/stringify.d.ts.map +1 -0
- package/node_modules/domutils/lib/stringify.js +91 -0
- package/node_modules/domutils/lib/stringify.js.map +1 -0
- package/node_modules/domutils/lib/traversal.d.ts +67 -0
- package/node_modules/domutils/lib/traversal.d.ts.map +1 -0
- package/node_modules/domutils/lib/traversal.js +125 -0
- package/node_modules/domutils/lib/traversal.js.map +1 -0
- package/node_modules/domutils/package.json +79 -0
- package/node_modules/domutils/readme.md +31 -0
- package/node_modules/entities/LICENSE +11 -0
- package/node_modules/entities/lib/decode.d.ts +211 -0
- package/node_modules/entities/lib/decode.d.ts.map +1 -0
- package/node_modules/entities/lib/decode.js +536 -0
- package/node_modules/entities/lib/decode.js.map +1 -0
- package/node_modules/entities/lib/decode_codepoint.d.ts +19 -0
- package/node_modules/entities/lib/decode_codepoint.d.ts.map +1 -0
- package/node_modules/entities/lib/decode_codepoint.js +76 -0
- package/node_modules/entities/lib/decode_codepoint.js.map +1 -0
- package/node_modules/entities/lib/encode.d.ts +22 -0
- package/node_modules/entities/lib/encode.d.ts.map +1 -0
- package/node_modules/entities/lib/encode.js +77 -0
- package/node_modules/entities/lib/encode.js.map +1 -0
- package/node_modules/entities/lib/escape.d.ts +43 -0
- package/node_modules/entities/lib/escape.d.ts.map +1 -0
- package/node_modules/entities/lib/escape.js +122 -0
- package/node_modules/entities/lib/escape.js.map +1 -0
- package/node_modules/entities/lib/esm/decode.d.ts +211 -0
- package/node_modules/entities/lib/esm/decode.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/decode.js +496 -0
- package/node_modules/entities/lib/esm/decode.js.map +1 -0
- package/node_modules/entities/lib/esm/decode_codepoint.d.ts +19 -0
- package/node_modules/entities/lib/esm/decode_codepoint.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/decode_codepoint.js +71 -0
- package/node_modules/entities/lib/esm/decode_codepoint.js.map +1 -0
- package/node_modules/entities/lib/esm/encode.d.ts +22 -0
- package/node_modules/entities/lib/esm/encode.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/encode.js +69 -0
- package/node_modules/entities/lib/esm/encode.js.map +1 -0
- package/node_modules/entities/lib/esm/escape.d.ts +43 -0
- package/node_modules/entities/lib/esm/escape.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/escape.js +116 -0
- package/node_modules/entities/lib/esm/escape.js.map +1 -0
- package/node_modules/entities/lib/esm/generated/decode-data-html.d.ts +3 -0
- package/node_modules/entities/lib/esm/generated/decode-data-html.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/generated/decode-data-html.js +7 -0
- package/node_modules/entities/lib/esm/generated/decode-data-html.js.map +1 -0
- package/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts +3 -0
- package/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/generated/decode-data-xml.js +7 -0
- package/node_modules/entities/lib/esm/generated/decode-data-xml.js.map +1 -0
- package/node_modules/entities/lib/esm/generated/encode-html.d.ts +8 -0
- package/node_modules/entities/lib/esm/generated/encode-html.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/generated/encode-html.js +10 -0
- package/node_modules/entities/lib/esm/generated/encode-html.js.map +1 -0
- package/node_modules/entities/lib/esm/index.d.ts +96 -0
- package/node_modules/entities/lib/esm/index.d.ts.map +1 -0
- package/node_modules/entities/lib/esm/index.js +99 -0
- package/node_modules/entities/lib/esm/index.js.map +1 -0
- package/node_modules/entities/lib/esm/package.json +1 -0
- package/node_modules/entities/lib/generated/decode-data-html.d.ts +3 -0
- package/node_modules/entities/lib/generated/decode-data-html.d.ts.map +1 -0
- package/node_modules/entities/lib/generated/decode-data-html.js +9 -0
- package/node_modules/entities/lib/generated/decode-data-html.js.map +1 -0
- package/node_modules/entities/lib/generated/decode-data-xml.d.ts +3 -0
- package/node_modules/entities/lib/generated/decode-data-xml.d.ts.map +1 -0
- package/node_modules/entities/lib/generated/decode-data-xml.js +9 -0
- package/node_modules/entities/lib/generated/decode-data-xml.js.map +1 -0
- package/node_modules/entities/lib/generated/encode-html.d.ts +8 -0
- package/node_modules/entities/lib/generated/encode-html.d.ts.map +1 -0
- package/node_modules/entities/lib/generated/encode-html.js +12 -0
- package/node_modules/entities/lib/generated/encode-html.js.map +1 -0
- package/node_modules/entities/lib/index.d.ts +96 -0
- package/node_modules/entities/lib/index.d.ts.map +1 -0
- package/node_modules/entities/lib/index.js +126 -0
- package/node_modules/entities/lib/index.js.map +1 -0
- package/node_modules/entities/package.json +90 -0
- package/node_modules/entities/readme.md +122 -0
- package/node_modules/html-escaper/LICENSE.txt +19 -0
- package/node_modules/html-escaper/README.md +110 -0
- package/node_modules/html-escaper/cjs/index.js +74 -0
- package/node_modules/html-escaper/cjs/package.json +1 -0
- package/node_modules/html-escaper/esm/index.js +71 -0
- package/node_modules/html-escaper/index.js +81 -0
- package/node_modules/html-escaper/min.js +1 -0
- package/node_modules/html-escaper/package.json +47 -0
- package/node_modules/html-escaper/test/index.js +23 -0
- package/node_modules/html-escaper/test/package.json +1 -0
- package/node_modules/htmlparser2/LICENSE +18 -0
- package/node_modules/htmlparser2/README.md +171 -0
- package/node_modules/htmlparser2/lib/Parser.d.ts +198 -0
- package/node_modules/htmlparser2/lib/Parser.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/Parser.js +519 -0
- package/node_modules/htmlparser2/lib/Parser.js.map +1 -0
- package/node_modules/htmlparser2/lib/Tokenizer.d.ts +126 -0
- package/node_modules/htmlparser2/lib/Tokenizer.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/Tokenizer.js +791 -0
- package/node_modules/htmlparser2/lib/Tokenizer.js.map +1 -0
- package/node_modules/htmlparser2/lib/WritableStream.d.ts +17 -0
- package/node_modules/htmlparser2/lib/WritableStream.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/WritableStream.js +54 -0
- package/node_modules/htmlparser2/lib/WritableStream.js.map +1 -0
- package/node_modules/htmlparser2/lib/esm/Parser.d.ts +198 -0
- package/node_modules/htmlparser2/lib/esm/Parser.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/esm/Parser.js +490 -0
- package/node_modules/htmlparser2/lib/esm/Parser.js.map +1 -0
- package/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts +126 -0
- package/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/esm/Tokenizer.js +784 -0
- package/node_modules/htmlparser2/lib/esm/Tokenizer.js.map +1 -0
- package/node_modules/htmlparser2/lib/esm/WritableStream.d.ts +17 -0
- package/node_modules/htmlparser2/lib/esm/WritableStream.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/esm/WritableStream.js +32 -0
- package/node_modules/htmlparser2/lib/esm/WritableStream.js.map +1 -0
- package/node_modules/htmlparser2/lib/esm/index.d.ts +54 -0
- package/node_modules/htmlparser2/lib/esm/index.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/esm/index.js +74 -0
- package/node_modules/htmlparser2/lib/esm/index.js.map +1 -0
- package/node_modules/htmlparser2/lib/esm/package.json +1 -0
- package/node_modules/htmlparser2/lib/index.d.ts +54 -0
- package/node_modules/htmlparser2/lib/index.d.ts.map +1 -0
- package/node_modules/htmlparser2/lib/index.js +114 -0
- package/node_modules/htmlparser2/lib/index.js.map +1 -0
- package/node_modules/htmlparser2/package.json +97 -0
- package/node_modules/jiti/.DS_Store +0 -0
- package/node_modules/jiti/LICENSE +21 -0
- package/node_modules/jiti/README.md +258 -0
- package/node_modules/jiti/dist/babel.cjs +257 -0
- package/node_modules/jiti/dist/jiti.cjs +1 -0
- package/node_modules/jiti/lib/jiti-cli.mjs +34 -0
- package/node_modules/jiti/lib/jiti-hooks.mjs +124 -0
- package/node_modules/jiti/lib/jiti-native.mjs +121 -0
- package/node_modules/jiti/lib/jiti-register.d.mts +1 -0
- package/node_modules/jiti/lib/jiti-register.mjs +4 -0
- package/node_modules/jiti/lib/jiti-static.mjs +23 -0
- package/node_modules/jiti/lib/jiti.cjs +30 -0
- package/node_modules/jiti/lib/jiti.d.cts +8 -0
- package/node_modules/jiti/lib/jiti.d.mts +8 -0
- package/node_modules/jiti/lib/jiti.mjs +29 -0
- package/node_modules/jiti/lib/types.d.ts +420 -0
- package/node_modules/jiti/package.json +146 -0
- package/node_modules/linkedom/.github/workflows/node.js.yml +31 -0
- package/node_modules/linkedom/LICENSE +15 -0
- package/node_modules/linkedom/README.md +307 -0
- package/node_modules/linkedom/cjs/cached.js +153 -0
- package/node_modules/linkedom/cjs/dom/parser.js +41 -0
- package/node_modules/linkedom/cjs/dom/string-map.js +47 -0
- package/node_modules/linkedom/cjs/dom/token-list.js +103 -0
- package/node_modules/linkedom/cjs/html/anchor-element.js +35 -0
- package/node_modules/linkedom/cjs/html/area-element.js +12 -0
- package/node_modules/linkedom/cjs/html/audio-element.js +12 -0
- package/node_modules/linkedom/cjs/html/base-element.js +12 -0
- package/node_modules/linkedom/cjs/html/body-element.js +12 -0
- package/node_modules/linkedom/cjs/html/br-element.js +12 -0
- package/node_modules/linkedom/cjs/html/button-element.js +31 -0
- package/node_modules/linkedom/cjs/html/canvas-element.js +53 -0
- package/node_modules/linkedom/cjs/html/d-list-element.js +12 -0
- package/node_modules/linkedom/cjs/html/data-element.js +12 -0
- package/node_modules/linkedom/cjs/html/data-list-element.js +12 -0
- package/node_modules/linkedom/cjs/html/details-element.js +12 -0
- package/node_modules/linkedom/cjs/html/directory-element.js +12 -0
- package/node_modules/linkedom/cjs/html/div-element.js +12 -0
- package/node_modules/linkedom/cjs/html/document.js +105 -0
- package/node_modules/linkedom/cjs/html/element.js +321 -0
- package/node_modules/linkedom/cjs/html/embed-element.js +12 -0
- package/node_modules/linkedom/cjs/html/field-set-element.js +12 -0
- package/node_modules/linkedom/cjs/html/font-element.js +12 -0
- package/node_modules/linkedom/cjs/html/form-element.js +12 -0
- package/node_modules/linkedom/cjs/html/frame-element.js +12 -0
- package/node_modules/linkedom/cjs/html/frame-set-element.js +12 -0
- package/node_modules/linkedom/cjs/html/head-element.js +12 -0
- package/node_modules/linkedom/cjs/html/heading-element.js +19 -0
- package/node_modules/linkedom/cjs/html/hr-element.js +12 -0
- package/node_modules/linkedom/cjs/html/html-element.js +12 -0
- package/node_modules/linkedom/cjs/html/i-frame-element.js +43 -0
- package/node_modules/linkedom/cjs/html/image-element.js +43 -0
- package/node_modules/linkedom/cjs/html/input-element.js +40 -0
- package/node_modules/linkedom/cjs/html/label-element.js +12 -0
- package/node_modules/linkedom/cjs/html/legend-element.js +12 -0
- package/node_modules/linkedom/cjs/html/li-element.js +12 -0
- package/node_modules/linkedom/cjs/html/link-element.js +41 -0
- package/node_modules/linkedom/cjs/html/map-element.js +12 -0
- package/node_modules/linkedom/cjs/html/marquee-element.js +12 -0
- package/node_modules/linkedom/cjs/html/media-element.js +12 -0
- package/node_modules/linkedom/cjs/html/menu-element.js +12 -0
- package/node_modules/linkedom/cjs/html/meta-element.js +36 -0
- package/node_modules/linkedom/cjs/html/meter-element.js +12 -0
- package/node_modules/linkedom/cjs/html/mod-element.js +12 -0
- package/node_modules/linkedom/cjs/html/o-list-element.js +12 -0
- package/node_modules/linkedom/cjs/html/object-element.js +12 -0
- package/node_modules/linkedom/cjs/html/opt-group-element.js +12 -0
- package/node_modules/linkedom/cjs/html/option-element.js +32 -0
- package/node_modules/linkedom/cjs/html/output-element.js +12 -0
- package/node_modules/linkedom/cjs/html/paragraph-element.js +12 -0
- package/node_modules/linkedom/cjs/html/param-element.js +12 -0
- package/node_modules/linkedom/cjs/html/picture-element.js +12 -0
- package/node_modules/linkedom/cjs/html/pre-element.js +12 -0
- package/node_modules/linkedom/cjs/html/progress-element.js +12 -0
- package/node_modules/linkedom/cjs/html/quote-element.js +12 -0
- package/node_modules/linkedom/cjs/html/script-element.js +80 -0
- package/node_modules/linkedom/cjs/html/select-element.js +45 -0
- package/node_modules/linkedom/cjs/html/slot-element.js +62 -0
- package/node_modules/linkedom/cjs/html/source-element.js +34 -0
- package/node_modules/linkedom/cjs/html/span-element.js +12 -0
- package/node_modules/linkedom/cjs/html/style-element.js +53 -0
- package/node_modules/linkedom/cjs/html/table-caption-element.js +12 -0
- package/node_modules/linkedom/cjs/html/table-cell-element.js +12 -0
- package/node_modules/linkedom/cjs/html/table-element.js +12 -0
- package/node_modules/linkedom/cjs/html/table-row-element.js +12 -0
- package/node_modules/linkedom/cjs/html/template-element.js +31 -0
- package/node_modules/linkedom/cjs/html/text-area-element.js +37 -0
- package/node_modules/linkedom/cjs/html/text-element.js +16 -0
- package/node_modules/linkedom/cjs/html/time-element.js +12 -0
- package/node_modules/linkedom/cjs/html/title-element.js +19 -0
- package/node_modules/linkedom/cjs/html/track-element.js +12 -0
- package/node_modules/linkedom/cjs/html/u-list-element.js +12 -0
- package/node_modules/linkedom/cjs/html/unknown-element.js +12 -0
- package/node_modules/linkedom/cjs/html/video-element.js +12 -0
- package/node_modules/linkedom/cjs/index.js +48 -0
- package/node_modules/linkedom/cjs/interface/attr.js +59 -0
- package/node_modules/linkedom/cjs/interface/cdata-section.js +22 -0
- package/node_modules/linkedom/cjs/interface/character-data.js +86 -0
- package/node_modules/linkedom/cjs/interface/comment.js +22 -0
- package/node_modules/linkedom/cjs/interface/css-style-declaration.js +130 -0
- package/node_modules/linkedom/cjs/interface/custom-element-registry.js +212 -0
- package/node_modules/linkedom/cjs/interface/custom-event.js +21 -0
- package/node_modules/linkedom/cjs/interface/document-fragment.js +13 -0
- package/node_modules/linkedom/cjs/interface/document-type.js +43 -0
- package/node_modules/linkedom/cjs/interface/document.js +290 -0
- package/node_modules/linkedom/cjs/interface/element.js +513 -0
- package/node_modules/linkedom/cjs/interface/event-target.js +89 -0
- package/node_modules/linkedom/cjs/interface/event.js +65 -0
- package/node_modules/linkedom/cjs/interface/html-collection.js +4 -0
- package/node_modules/linkedom/cjs/interface/image.js +23 -0
- package/node_modules/linkedom/cjs/interface/input-event.js +24 -0
- package/node_modules/linkedom/cjs/interface/mutation-observer.js +176 -0
- package/node_modules/linkedom/cjs/interface/named-node-map.js +44 -0
- package/node_modules/linkedom/cjs/interface/node-filter.js +17 -0
- package/node_modules/linkedom/cjs/interface/node-list.js +10 -0
- package/node_modules/linkedom/cjs/interface/node.js +206 -0
- package/node_modules/linkedom/cjs/interface/range.js +131 -0
- package/node_modules/linkedom/cjs/interface/shadow-root.js +22 -0
- package/node_modules/linkedom/cjs/interface/text.js +44 -0
- package/node_modules/linkedom/cjs/interface/tree-walker.js +60 -0
- package/node_modules/linkedom/cjs/mixin/child-node.js +67 -0
- package/node_modules/linkedom/cjs/mixin/inner-html.js +39 -0
- package/node_modules/linkedom/cjs/mixin/non-document-type-child-node.js +23 -0
- package/node_modules/linkedom/cjs/mixin/non-element-parent-node.js +44 -0
- package/node_modules/linkedom/cjs/mixin/parent-node.js +295 -0
- package/node_modules/linkedom/cjs/package.json +1 -0
- package/node_modules/linkedom/cjs/shared/attributes.js +111 -0
- package/node_modules/linkedom/cjs/shared/cache.js +33 -0
- package/node_modules/linkedom/cjs/shared/constants.js +56 -0
- package/node_modules/linkedom/cjs/shared/facades.js +91 -0
- package/node_modules/linkedom/cjs/shared/html-classes.js +210 -0
- package/node_modules/linkedom/cjs/shared/jsdon.js +79 -0
- package/node_modules/linkedom/cjs/shared/matches.js +121 -0
- package/node_modules/linkedom/cjs/shared/mime.js +33 -0
- package/node_modules/linkedom/cjs/shared/node.js +53 -0
- package/node_modules/linkedom/cjs/shared/object.js +18 -0
- package/node_modules/linkedom/cjs/shared/parse-from-string.js +125 -0
- package/node_modules/linkedom/cjs/shared/parse-json.js +134 -0
- package/node_modules/linkedom/cjs/shared/register-html-class.js +11 -0
- package/node_modules/linkedom/cjs/shared/shadow-roots.js +3 -0
- package/node_modules/linkedom/cjs/shared/symbols.js +88 -0
- package/node_modules/linkedom/cjs/shared/text-escaper.js +24 -0
- package/node_modules/linkedom/cjs/shared/utils.js +49 -0
- package/node_modules/linkedom/cjs/svg/document.js +14 -0
- package/node_modules/linkedom/cjs/svg/element.js +60 -0
- package/node_modules/linkedom/cjs/xml/document.js +14 -0
- package/node_modules/linkedom/commonjs/canvas-shim.cjs +16 -0
- package/node_modules/linkedom/commonjs/canvas.cjs +7 -0
- package/node_modules/linkedom/commonjs/perf_hooks.cjs +9 -0
- package/node_modules/linkedom/esm/cached.js +151 -0
- package/node_modules/linkedom/esm/dom/parser.js +39 -0
- package/node_modules/linkedom/esm/dom/string-map.js +45 -0
- package/node_modules/linkedom/esm/dom/token-list.js +101 -0
- package/node_modules/linkedom/esm/html/anchor-element.js +34 -0
- package/node_modules/linkedom/esm/html/area-element.js +10 -0
- package/node_modules/linkedom/esm/html/audio-element.js +10 -0
- package/node_modules/linkedom/esm/html/base-element.js +10 -0
- package/node_modules/linkedom/esm/html/body-element.js +10 -0
- package/node_modules/linkedom/esm/html/br-element.js +10 -0
- package/node_modules/linkedom/esm/html/button-element.js +30 -0
- package/node_modules/linkedom/esm/html/canvas-element.js +52 -0
- package/node_modules/linkedom/esm/html/d-list-element.js +10 -0
- package/node_modules/linkedom/esm/html/data-element.js +10 -0
- package/node_modules/linkedom/esm/html/data-list-element.js +10 -0
- package/node_modules/linkedom/esm/html/details-element.js +10 -0
- package/node_modules/linkedom/esm/html/directory-element.js +10 -0
- package/node_modules/linkedom/esm/html/div-element.js +10 -0
- package/node_modules/linkedom/esm/html/document.js +103 -0
- package/node_modules/linkedom/esm/html/element.js +319 -0
- package/node_modules/linkedom/esm/html/embed-element.js +10 -0
- package/node_modules/linkedom/esm/html/field-set-element.js +10 -0
- package/node_modules/linkedom/esm/html/font-element.js +10 -0
- package/node_modules/linkedom/esm/html/form-element.js +10 -0
- package/node_modules/linkedom/esm/html/frame-element.js +10 -0
- package/node_modules/linkedom/esm/html/frame-set-element.js +10 -0
- package/node_modules/linkedom/esm/html/head-element.js +10 -0
- package/node_modules/linkedom/esm/html/heading-element.js +18 -0
- package/node_modules/linkedom/esm/html/hr-element.js +10 -0
- package/node_modules/linkedom/esm/html/html-element.js +10 -0
- package/node_modules/linkedom/esm/html/i-frame-element.js +42 -0
- package/node_modules/linkedom/esm/html/image-element.js +42 -0
- package/node_modules/linkedom/esm/html/input-element.js +39 -0
- package/node_modules/linkedom/esm/html/label-element.js +10 -0
- package/node_modules/linkedom/esm/html/legend-element.js +10 -0
- package/node_modules/linkedom/esm/html/li-element.js +10 -0
- package/node_modules/linkedom/esm/html/link-element.js +40 -0
- package/node_modules/linkedom/esm/html/map-element.js +10 -0
- package/node_modules/linkedom/esm/html/marquee-element.js +10 -0
- package/node_modules/linkedom/esm/html/media-element.js +10 -0
- package/node_modules/linkedom/esm/html/menu-element.js +10 -0
- package/node_modules/linkedom/esm/html/meta-element.js +34 -0
- package/node_modules/linkedom/esm/html/meter-element.js +10 -0
- package/node_modules/linkedom/esm/html/mod-element.js +10 -0
- package/node_modules/linkedom/esm/html/o-list-element.js +10 -0
- package/node_modules/linkedom/esm/html/object-element.js +10 -0
- package/node_modules/linkedom/esm/html/opt-group-element.js +10 -0
- package/node_modules/linkedom/esm/html/option-element.js +31 -0
- package/node_modules/linkedom/esm/html/output-element.js +10 -0
- package/node_modules/linkedom/esm/html/paragraph-element.js +10 -0
- package/node_modules/linkedom/esm/html/param-element.js +10 -0
- package/node_modules/linkedom/esm/html/picture-element.js +10 -0
- package/node_modules/linkedom/esm/html/pre-element.js +10 -0
- package/node_modules/linkedom/esm/html/progress-element.js +10 -0
- package/node_modules/linkedom/esm/html/quote-element.js +10 -0
- package/node_modules/linkedom/esm/html/script-element.js +79 -0
- package/node_modules/linkedom/esm/html/select-element.js +44 -0
- package/node_modules/linkedom/esm/html/slot-element.js +61 -0
- package/node_modules/linkedom/esm/html/source-element.js +33 -0
- package/node_modules/linkedom/esm/html/span-element.js +10 -0
- package/node_modules/linkedom/esm/html/style-element.js +52 -0
- package/node_modules/linkedom/esm/html/table-caption-element.js +10 -0
- package/node_modules/linkedom/esm/html/table-cell-element.js +10 -0
- package/node_modules/linkedom/esm/html/table-element.js +10 -0
- package/node_modules/linkedom/esm/html/table-row-element.js +10 -0
- package/node_modules/linkedom/esm/html/template-element.js +30 -0
- package/node_modules/linkedom/esm/html/text-area-element.js +36 -0
- package/node_modules/linkedom/esm/html/text-element.js +14 -0
- package/node_modules/linkedom/esm/html/time-element.js +10 -0
- package/node_modules/linkedom/esm/html/title-element.js +18 -0
- package/node_modules/linkedom/esm/html/track-element.js +10 -0
- package/node_modules/linkedom/esm/html/u-list-element.js +10 -0
- package/node_modules/linkedom/esm/html/unknown-element.js +10 -0
- package/node_modules/linkedom/esm/html/video-element.js +10 -0
- package/node_modules/linkedom/esm/index.js +28 -0
- package/node_modules/linkedom/esm/interface/attr.js +57 -0
- package/node_modules/linkedom/esm/interface/cdata-section.js +20 -0
- package/node_modules/linkedom/esm/interface/character-data.js +84 -0
- package/node_modules/linkedom/esm/interface/comment.js +20 -0
- package/node_modules/linkedom/esm/interface/css-style-declaration.js +128 -0
- package/node_modules/linkedom/esm/interface/custom-element-registry.js +205 -0
- package/node_modules/linkedom/esm/interface/custom-event.js +19 -0
- package/node_modules/linkedom/esm/interface/document-fragment.js +11 -0
- package/node_modules/linkedom/esm/interface/document-type.js +41 -0
- package/node_modules/linkedom/esm/interface/document.js +289 -0
- package/node_modules/linkedom/esm/interface/element.js +514 -0
- package/node_modules/linkedom/esm/interface/event-target.js +88 -0
- package/node_modules/linkedom/esm/interface/event.js +64 -0
- package/node_modules/linkedom/esm/interface/html-collection.js +3 -0
- package/node_modules/linkedom/esm/interface/image.js +21 -0
- package/node_modules/linkedom/esm/interface/input-event.js +22 -0
- package/node_modules/linkedom/esm/interface/mutation-observer.js +172 -0
- package/node_modules/linkedom/esm/interface/named-node-map.js +42 -0
- package/node_modules/linkedom/esm/interface/node-filter.js +15 -0
- package/node_modules/linkedom/esm/interface/node-list.js +8 -0
- package/node_modules/linkedom/esm/interface/node.js +204 -0
- package/node_modules/linkedom/esm/interface/range.js +129 -0
- package/node_modules/linkedom/esm/interface/shadow-root.js +20 -0
- package/node_modules/linkedom/esm/interface/text.js +42 -0
- package/node_modules/linkedom/esm/interface/tree-walker.js +58 -0
- package/node_modules/linkedom/esm/mixin/child-node.js +62 -0
- package/node_modules/linkedom/esm/mixin/inner-html.js +36 -0
- package/node_modules/linkedom/esm/mixin/non-document-type-child-node.js +20 -0
- package/node_modules/linkedom/esm/mixin/non-element-parent-node.js +42 -0
- package/node_modules/linkedom/esm/mixin/parent-node.js +293 -0
- package/node_modules/linkedom/esm/shared/attributes.js +104 -0
- package/node_modules/linkedom/esm/shared/cache.js +26 -0
- package/node_modules/linkedom/esm/shared/constants.js +33 -0
- package/node_modules/linkedom/esm/shared/facades.js +77 -0
- package/node_modules/linkedom/esm/shared/html-classes.js +210 -0
- package/node_modules/linkedom/esm/shared/jsdon.js +73 -0
- package/node_modules/linkedom/esm/shared/matches.js +118 -0
- package/node_modules/linkedom/esm/shared/mime.js +31 -0
- package/node_modules/linkedom/esm/shared/node.js +48 -0
- package/node_modules/linkedom/esm/shared/object.js +19 -0
- package/node_modules/linkedom/esm/shared/parse-from-string.js +122 -0
- package/node_modules/linkedom/esm/shared/parse-json.js +131 -0
- package/node_modules/linkedom/esm/shared/register-html-class.js +8 -0
- package/node_modules/linkedom/esm/shared/shadow-roots.js +1 -0
- package/node_modules/linkedom/esm/shared/symbols.js +65 -0
- package/node_modules/linkedom/esm/shared/text-escaper.js +22 -0
- package/node_modules/linkedom/esm/shared/utils.js +40 -0
- package/node_modules/linkedom/esm/svg/document.js +12 -0
- package/node_modules/linkedom/esm/svg/element.js +58 -0
- package/node_modules/linkedom/esm/xml/document.js +12 -0
- package/node_modules/linkedom/package.json +84 -0
- package/node_modules/linkedom/tsconfig.json +13 -0
- package/node_modules/linkedom/types/commonjs/canvas-shim.d.cts +9 -0
- package/node_modules/linkedom/types/commonjs/canvas.d.cts +2 -0
- package/node_modules/linkedom/types/commonjs/perf_hooks.d.cts +1 -0
- package/node_modules/linkedom/types/dom/parser.d.ts +24 -0
- package/node_modules/linkedom/types/dom/string-map.d.ts +9 -0
- package/node_modules/linkedom/types/dom/token-list.d.ts +32 -0
- package/node_modules/linkedom/types/esm/dom/parser.d.ts +24 -0
- package/node_modules/linkedom/types/esm/dom/string-map.d.ts +9 -0
- package/node_modules/linkedom/types/esm/dom/token-list.d.ts +36 -0
- package/node_modules/linkedom/types/esm/html/anchor-element.d.ts +14 -0
- package/node_modules/linkedom/types/esm/html/area-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/audio-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/base-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/body-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/br-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/button-element.d.ts +12 -0
- package/node_modules/linkedom/types/esm/html/canvas-element.d.ts +14 -0
- package/node_modules/linkedom/types/esm/html/d-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/data-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/data-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/details-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/directory-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/div-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/document.d.ts +23 -0
- package/node_modules/linkedom/types/esm/html/element.d.ts +168 -0
- package/node_modules/linkedom/types/esm/html/embed-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/field-set-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/font-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/form-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/frame-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/frame-set-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/head-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/heading-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/hr-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/html-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/i-frame-element.d.ts +20 -0
- package/node_modules/linkedom/types/esm/html/image-element.d.ts +18 -0
- package/node_modules/linkedom/types/esm/html/input-element.d.ts +18 -0
- package/node_modules/linkedom/types/esm/html/label-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/legend-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/li-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/link-element.d.ts +18 -0
- package/node_modules/linkedom/types/esm/html/map-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/marquee-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/media-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/menu-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/meta-element.d.ts +16 -0
- package/node_modules/linkedom/types/esm/html/meter-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/mod-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/o-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/object-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/opt-group-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/option-element.d.ts +10 -0
- package/node_modules/linkedom/types/esm/html/output-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/paragraph-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/param-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/picture-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/pre-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/progress-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/quote-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/script-element.d.ts +22 -0
- package/node_modules/linkedom/types/esm/html/select-element.d.ts +13 -0
- package/node_modules/linkedom/types/esm/html/slot-element.d.ts +11 -0
- package/node_modules/linkedom/types/esm/html/source-element.d.ts +14 -0
- package/node_modules/linkedom/types/esm/html/span-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/style-element.d.ts +11 -0
- package/node_modules/linkedom/types/esm/html/table-caption-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/table-cell-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/table-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/table-row-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/template-element.d.ts +10 -0
- package/node_modules/linkedom/types/esm/html/text-area-element.d.ts +16 -0
- package/node_modules/linkedom/types/esm/html/text-element.d.ts +4 -0
- package/node_modules/linkedom/types/esm/html/time-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/title-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/track-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/u-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/unknown-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/html/video-element.d.ts +6 -0
- package/node_modules/linkedom/types/esm/index.d.ts +13 -0
- package/node_modules/linkedom/types/esm/interface/attr.d.ts +17 -0
- package/node_modules/linkedom/types/esm/interface/cdata-section.d.ts +8 -0
- package/node_modules/linkedom/types/esm/interface/character-data.d.ts +26 -0
- package/node_modules/linkedom/types/esm/interface/comment.d.ts +8 -0
- package/node_modules/linkedom/types/esm/interface/css-style-declaration.d.ts +19 -0
- package/node_modules/linkedom/types/esm/interface/custom-element-registry.d.ts +54 -0
- package/node_modules/linkedom/types/esm/interface/custom-event.d.ts +7 -0
- package/node_modules/linkedom/types/esm/interface/document-fragment.d.ts +7 -0
- package/node_modules/linkedom/types/esm/interface/document-type.d.ts +12 -0
- package/node_modules/linkedom/types/esm/interface/document.d.ts +71 -0
- package/node_modules/linkedom/types/esm/interface/element.d.ts +81 -0
- package/node_modules/linkedom/types/esm/interface/event-target.d.ts +13 -0
- package/node_modules/linkedom/types/esm/interface/event.d.ts +32 -0
- package/node_modules/linkedom/types/esm/interface/image.d.ts +214 -0
- package/node_modules/linkedom/types/esm/interface/input-event.d.ts +11 -0
- package/node_modules/linkedom/types/esm/interface/mutation-observer.d.ts +40 -0
- package/node_modules/linkedom/types/esm/interface/named-node-map.d.ts +14 -0
- package/node_modules/linkedom/types/esm/interface/node-filter.d.ts +7 -0
- package/node_modules/linkedom/types/esm/interface/node-list.d.ts +9 -0
- package/node_modules/linkedom/types/esm/interface/node.d.ts +86 -0
- package/node_modules/linkedom/types/esm/interface/range.d.ts +23 -0
- package/node_modules/linkedom/types/esm/interface/shadow-root.d.ts +10 -0
- package/node_modules/linkedom/types/esm/interface/text.d.ts +9 -0
- package/node_modules/linkedom/types/esm/interface/tree-walker.d.ts +15 -0
- package/node_modules/linkedom/types/esm/mixin/child-node.d.ts +4 -0
- package/node_modules/linkedom/types/esm/mixin/inner-html.d.ts +2 -0
- package/node_modules/linkedom/types/esm/mixin/non-document-type-child-node.d.ts +2 -0
- package/node_modules/linkedom/types/esm/mixin/non-element-parent-node.d.ts +6 -0
- package/node_modules/linkedom/types/esm/mixin/parent-node.d.ts +57 -0
- package/node_modules/linkedom/types/esm/shared/attributes.d.ts +15 -0
- package/node_modules/linkedom/types/esm/shared/constants.d.ts +22 -0
- package/node_modules/linkedom/types/esm/shared/facades.d.ts +25 -0
- package/node_modules/linkedom/types/esm/shared/html-classes.d.ts +139 -0
- package/node_modules/linkedom/types/esm/shared/jsdon.d.ts +9 -0
- package/node_modules/linkedom/types/esm/shared/matches.d.ts +2 -0
- package/node_modules/linkedom/types/esm/shared/mime.d.ts +35 -0
- package/node_modules/linkedom/types/esm/shared/node.d.ts +12 -0
- package/node_modules/linkedom/types/esm/shared/object.d.ts +25 -0
- package/node_modules/linkedom/types/esm/shared/parse-from-string.d.ts +2 -0
- package/node_modules/linkedom/types/esm/shared/parse-json.d.ts +7 -0
- package/node_modules/linkedom/types/esm/shared/register-html-class.d.ts +2 -0
- package/node_modules/linkedom/types/esm/shared/shadow-roots.d.ts +1 -0
- package/node_modules/linkedom/types/esm/shared/symbols.d.ts +22 -0
- package/node_modules/linkedom/types/esm/shared/text-escaper.d.ts +1 -0
- package/node_modules/linkedom/types/esm/shared/utils.d.ts +15 -0
- package/node_modules/linkedom/types/esm/svg/document.d.ts +7 -0
- package/node_modules/linkedom/types/esm/svg/element.d.ts +8 -0
- package/node_modules/linkedom/types/esm/xml/document.d.ts +7 -0
- package/node_modules/linkedom/types/html/anchor-element.d.ts +14 -0
- package/node_modules/linkedom/types/html/area-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/audio-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/base-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/body-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/br-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/button-element.d.ts +12 -0
- package/node_modules/linkedom/types/html/canvas-element.d.ts +14 -0
- package/node_modules/linkedom/types/html/d-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/data-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/data-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/details-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/directory-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/div-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/document.d.ts +22 -0
- package/node_modules/linkedom/types/html/element.d.ts +168 -0
- package/node_modules/linkedom/types/html/embed-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/field-set-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/font-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/form-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/frame-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/frame-set-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/head-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/heading-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/hr-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/html-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/i-frame-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/image-element.d.ts +18 -0
- package/node_modules/linkedom/types/html/input-element.d.ts +16 -0
- package/node_modules/linkedom/types/html/label-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/legend-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/li-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/link-element.d.ts +18 -0
- package/node_modules/linkedom/types/html/map-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/marquee-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/media-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/menu-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/meta-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/meter-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/mod-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/o-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/object-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/opt-group-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/option-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/output-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/paragraph-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/param-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/picture-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/pre-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/progress-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/quote-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/script-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/select-element.d.ts +12 -0
- package/node_modules/linkedom/types/html/slot-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/source-element.d.ts +14 -0
- package/node_modules/linkedom/types/html/span-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/style-element.d.ts +9 -0
- package/node_modules/linkedom/types/html/table-caption-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/table-cell-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/table-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/table-row-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/template-element.d.ts +10 -0
- package/node_modules/linkedom/types/html/text-area-element.d.ts +16 -0
- package/node_modules/linkedom/types/html/text-element.d.ts +3 -0
- package/node_modules/linkedom/types/html/time-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/title-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/track-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/u-list-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/unknown-element.d.ts +6 -0
- package/node_modules/linkedom/types/html/video-element.d.ts +6 -0
- package/node_modules/linkedom/types/index.d.ts +12 -0
- package/node_modules/linkedom/types/interface/attr.d.ts +16 -0
- package/node_modules/linkedom/types/interface/character-data.d.ts +22 -0
- package/node_modules/linkedom/types/interface/comment.d.ts +7 -0
- package/node_modules/linkedom/types/interface/css-style-declaration.d.ts +10 -0
- package/node_modules/linkedom/types/interface/custom-element-registry.d.ts +54 -0
- package/node_modules/linkedom/types/interface/custom-event.d.ts +37 -0
- package/node_modules/linkedom/types/interface/document-fragment.d.ts +7 -0
- package/node_modules/linkedom/types/interface/document-type.d.ts +11 -0
- package/node_modules/linkedom/types/interface/document.d.ts +60 -0
- package/node_modules/linkedom/types/interface/element.d.ts +72 -0
- package/node_modules/linkedom/types/interface/event-target.d.ts +13 -0
- package/node_modules/linkedom/types/interface/event.d.ts +32 -0
- package/node_modules/linkedom/types/interface/image.d.ts +199 -0
- package/node_modules/linkedom/types/interface/input-event.d.ts +11 -0
- package/node_modules/linkedom/types/interface/mutation-observer.d.ts +40 -0
- package/node_modules/linkedom/types/interface/named-node-map.d.ts +14 -0
- package/node_modules/linkedom/types/interface/node-list.d.ts +9 -0
- package/node_modules/linkedom/types/interface/node.d.ts +78 -0
- package/node_modules/linkedom/types/interface/range.d.ts +22 -0
- package/node_modules/linkedom/types/interface/shadow-root.d.ts +9 -0
- package/node_modules/linkedom/types/interface/text.d.ts +8 -0
- package/node_modules/linkedom/types/interface/tree-walker.d.ts +15 -0
- package/node_modules/linkedom/types/mixin/child-node.d.ts +4 -0
- package/node_modules/linkedom/types/mixin/inner-html.d.ts +2 -0
- package/node_modules/linkedom/types/mixin/non-document-type-child-node.d.ts +2 -0
- package/node_modules/linkedom/types/mixin/non-element-parent-node.d.ts +5 -0
- package/node_modules/linkedom/types/mixin/parent-node.d.ts +47 -0
- package/node_modules/linkedom/types/shared/attributes.d.ts +21 -0
- package/node_modules/linkedom/types/shared/cache.d.ts +7 -0
- package/node_modules/linkedom/types/shared/constants.d.ts +19 -0
- package/node_modules/linkedom/types/shared/facades.d.ts +23 -0
- package/node_modules/linkedom/types/shared/html-classes.d.ts +139 -0
- package/node_modules/linkedom/types/shared/jsdon.d.ts +9 -0
- package/node_modules/linkedom/types/shared/matches.d.ts +2 -0
- package/node_modules/linkedom/types/shared/mime.d.ts +35 -0
- package/node_modules/linkedom/types/shared/node.d.ts +12 -0
- package/node_modules/linkedom/types/shared/object.d.ts +25 -0
- package/node_modules/linkedom/types/shared/parse-from-string.d.ts +2 -0
- package/node_modules/linkedom/types/shared/parse-json.d.ts +7 -0
- package/node_modules/linkedom/types/shared/register-html-class.d.ts +2 -0
- package/node_modules/linkedom/types/shared/symbols.d.ts +20 -0
- package/node_modules/linkedom/types/shared/text-escaper.d.ts +1 -0
- package/node_modules/linkedom/types/shared/utils.d.ts +15 -0
- package/node_modules/linkedom/types/svg/document.d.ts +7 -0
- package/node_modules/linkedom/types/svg/element.d.ts +8 -0
- package/node_modules/linkedom/types/xml/document.d.ts +7 -0
- package/node_modules/linkedom/worker.js +12526 -0
- package/node_modules/node-forge/.DS_Store +0 -0
- package/node_modules/node-forge/LICENSE +331 -0
- package/node_modules/node-forge/README.md +2071 -0
- package/node_modules/node-forge/dist/forge.all.min.js +2 -0
- package/node_modules/node-forge/dist/forge.all.min.js.map +1 -0
- package/node_modules/node-forge/dist/forge.min.js +2 -0
- package/node_modules/node-forge/dist/forge.min.js.map +1 -0
- package/node_modules/node-forge/dist/prime.worker.min.js +2 -0
- package/node_modules/node-forge/dist/prime.worker.min.js.map +1 -0
- package/node_modules/node-forge/flash/swf/SocketPool.swf +0 -0
- package/node_modules/node-forge/lib/aes.js +1091 -0
- package/node_modules/node-forge/lib/aesCipherSuites.js +282 -0
- package/node_modules/node-forge/lib/asn1-validator.js +91 -0
- package/node_modules/node-forge/lib/asn1.js +1503 -0
- package/node_modules/node-forge/lib/baseN.js +186 -0
- package/node_modules/node-forge/lib/cipher.js +230 -0
- package/node_modules/node-forge/lib/cipherModes.js +999 -0
- package/node_modules/node-forge/lib/des.js +496 -0
- package/node_modules/node-forge/lib/ed25519.js +1091 -0
- package/node_modules/node-forge/lib/forge.js +13 -0
- package/node_modules/node-forge/lib/form.js +149 -0
- package/node_modules/node-forge/lib/hmac.js +146 -0
- package/node_modules/node-forge/lib/http.js +1346 -0
- package/node_modules/node-forge/lib/index.all.js +16 -0
- package/node_modules/node-forge/lib/index.js +33 -0
- package/node_modules/node-forge/lib/jsbn.js +1294 -0
- package/node_modules/node-forge/lib/kem.js +168 -0
- package/node_modules/node-forge/lib/log.js +319 -0
- package/node_modules/node-forge/lib/md.all.js +13 -0
- package/node_modules/node-forge/lib/md.js +11 -0
- package/node_modules/node-forge/lib/md5.js +289 -0
- package/node_modules/node-forge/lib/mgf.js +12 -0
- package/node_modules/node-forge/lib/mgf1.js +57 -0
- package/node_modules/node-forge/lib/oids.js +180 -0
- package/node_modules/node-forge/lib/pbe.js +1023 -0
- package/node_modules/node-forge/lib/pbkdf2.js +211 -0
- package/node_modules/node-forge/lib/pem.js +237 -0
- package/node_modules/node-forge/lib/pkcs1.js +276 -0
- package/node_modules/node-forge/lib/pkcs12.js +1078 -0
- package/node_modules/node-forge/lib/pkcs7.js +1260 -0
- package/node_modules/node-forge/lib/pkcs7asn1.js +410 -0
- package/node_modules/node-forge/lib/pki.js +102 -0
- package/node_modules/node-forge/lib/prime.js +297 -0
- package/node_modules/node-forge/lib/prime.worker.js +168 -0
- package/node_modules/node-forge/lib/prng.js +419 -0
- package/node_modules/node-forge/lib/pss.js +241 -0
- package/node_modules/node-forge/lib/random.js +191 -0
- package/node_modules/node-forge/lib/rc2.js +410 -0
- package/node_modules/node-forge/lib/rsa.js +1968 -0
- package/node_modules/node-forge/lib/sha1.js +319 -0
- package/node_modules/node-forge/lib/sha256.js +327 -0
- package/node_modules/node-forge/lib/sha512.js +561 -0
- package/node_modules/node-forge/lib/socket.js +287 -0
- package/node_modules/node-forge/lib/ssh.js +236 -0
- package/node_modules/node-forge/lib/tls.js +4282 -0
- package/node_modules/node-forge/lib/tlssocket.js +249 -0
- package/node_modules/node-forge/lib/util.js +2652 -0
- package/node_modules/node-forge/lib/x509.js +3251 -0
- package/node_modules/node-forge/lib/xhr.js +738 -0
- package/node_modules/node-forge/package.json +123 -0
- package/node_modules/nth-check/LICENSE +11 -0
- package/node_modules/nth-check/README.md +136 -0
- package/node_modules/nth-check/lib/compile.d.ts +55 -0
- package/node_modules/nth-check/lib/compile.d.ts.map +1 -0
- package/node_modules/nth-check/lib/compile.js +121 -0
- package/node_modules/nth-check/lib/compile.js.map +1 -0
- package/node_modules/nth-check/lib/esm/compile.d.ts +55 -0
- package/node_modules/nth-check/lib/esm/compile.d.ts.map +1 -0
- package/node_modules/nth-check/lib/esm/compile.js +113 -0
- package/node_modules/nth-check/lib/esm/compile.js.map +1 -0
- package/node_modules/nth-check/lib/esm/index.d.ts +59 -0
- package/node_modules/nth-check/lib/esm/index.d.ts.map +1 -0
- package/node_modules/nth-check/lib/esm/index.js +63 -0
- package/node_modules/nth-check/lib/esm/index.js.map +1 -0
- package/node_modules/nth-check/lib/esm/package.json +1 -0
- package/node_modules/nth-check/lib/esm/parse.d.ts +9 -0
- package/node_modules/nth-check/lib/esm/parse.d.ts.map +1 -0
- package/node_modules/nth-check/lib/esm/parse.js +73 -0
- package/node_modules/nth-check/lib/esm/parse.js.map +1 -0
- package/node_modules/nth-check/lib/index.d.ts +59 -0
- package/node_modules/nth-check/lib/index.d.ts.map +1 -0
- package/node_modules/nth-check/lib/index.js +70 -0
- package/node_modules/nth-check/lib/index.js.map +1 -0
- package/node_modules/nth-check/lib/parse.d.ts +9 -0
- package/node_modules/nth-check/lib/parse.d.ts.map +1 -0
- package/node_modules/nth-check/lib/parse.js +77 -0
- package/node_modules/nth-check/lib/parse.js.map +1 -0
- package/node_modules/nth-check/package.json +78 -0
- package/node_modules/p-limit/index.d.ts +81 -0
- package/node_modules/p-limit/index.js +104 -0
- package/node_modules/p-limit/license +9 -0
- package/node_modules/p-limit/package.json +58 -0
- package/node_modules/p-limit/readme.md +129 -0
- package/node_modules/pi-web-access/CHANGELOG.md +387 -0
- package/node_modules/pi-web-access/LICENSE +21 -0
- package/node_modules/pi-web-access/README.md +352 -0
- package/node_modules/pi-web-access/activity.ts +101 -0
- package/node_modules/pi-web-access/banner.png +0 -0
- package/node_modules/pi-web-access/chrome-cookies.ts +322 -0
- package/node_modules/pi-web-access/code-search.ts +107 -0
- package/node_modules/pi-web-access/curator-page.ts +3359 -0
- package/node_modules/pi-web-access/curator-server.ts +605 -0
- package/node_modules/pi-web-access/exa.ts +520 -0
- package/node_modules/pi-web-access/extract.ts +641 -0
- package/node_modules/pi-web-access/gemini-api.ts +112 -0
- package/node_modules/pi-web-access/gemini-search.ts +361 -0
- package/node_modules/pi-web-access/gemini-url-context.ts +126 -0
- package/node_modules/pi-web-access/gemini-web-config.ts +52 -0
- package/node_modules/pi-web-access/gemini-web.ts +396 -0
- package/node_modules/pi-web-access/github-api.ts +196 -0
- package/node_modules/pi-web-access/github-extract.ts +634 -0
- package/node_modules/pi-web-access/index.ts +2346 -0
- package/node_modules/pi-web-access/package.json +45 -0
- package/node_modules/pi-web-access/pdf-extract.ts +192 -0
- package/node_modules/pi-web-access/perplexity.ts +195 -0
- package/node_modules/pi-web-access/pi-web-fetch-demo.mp4 +0 -0
- package/node_modules/pi-web-access/rsc-extract.ts +338 -0
- package/node_modules/pi-web-access/skills/librarian/SKILL.md +195 -0
- package/node_modules/pi-web-access/storage.ts +72 -0
- package/node_modules/pi-web-access/summary-review.ts +276 -0
- package/node_modules/pi-web-access/test/gemini-web-cookie-opt-in.test.mjs +41 -0
- package/node_modules/pi-web-access/test/pdf-extract.test.mjs +95 -0
- package/node_modules/pi-web-access/utils.ts +44 -0
- package/node_modules/pi-web-access/video-extract.ts +378 -0
- package/node_modules/pi-web-access/youtube-extract.ts +310 -0
- package/node_modules/shell-quote/.DS_Store +0 -0
- package/node_modules/shell-quote/.eslintrc +30 -0
- package/node_modules/shell-quote/.github/FUNDING.yml +12 -0
- package/node_modules/shell-quote/.nycrc +14 -0
- package/node_modules/shell-quote/LICENSE +24 -0
- package/node_modules/shell-quote/README.md +168 -0
- package/node_modules/shell-quote/index.js +4 -0
- package/node_modules/shell-quote/package.json +71 -0
- package/node_modules/shell-quote/parse.js +226 -0
- package/node_modules/shell-quote/quote.js +61 -0
- package/node_modules/shell-quote/security.md +11 -0
- package/node_modules/shell-quote/test/comment.js +16 -0
- package/node_modules/shell-quote/test/env.js +52 -0
- package/node_modules/shell-quote/test/env_fn.js +21 -0
- package/node_modules/shell-quote/test/op.js +102 -0
- package/node_modules/shell-quote/test/parse.js +50 -0
- package/node_modules/shell-quote/test/quote.js +116 -0
- package/node_modules/shell-quote/test/set.js +31 -0
- package/node_modules/turndown/LICENSE +21 -0
- package/node_modules/turndown/README.md +234 -0
- package/node_modules/turndown/dist/turndown.js +800 -0
- package/node_modules/turndown/lib/turndown.browser.cjs.js +797 -0
- package/node_modules/turndown/lib/turndown.browser.es.js +795 -0
- package/node_modules/turndown/lib/turndown.browser.umd.js +803 -0
- package/node_modules/turndown/lib/turndown.cjs.js +774 -0
- package/node_modules/turndown/lib/turndown.es.js +772 -0
- package/node_modules/turndown/lib/turndown.umd.js +780 -0
- package/node_modules/turndown/package.json +59 -0
- package/node_modules/typebox/build/compile/code.d.mts +12 -0
- package/node_modules/typebox/build/compile/code.mjs +65 -0
- package/node_modules/typebox/build/compile/compile.d.mts +6 -0
- package/node_modules/typebox/build/compile/compile.mjs +12 -0
- package/node_modules/typebox/build/compile/index.d.mts +8 -0
- package/node_modules/typebox/build/compile/index.mjs +14 -0
- package/node_modules/typebox/build/compile/validator.d.mts +43 -0
- package/node_modules/typebox/build/compile/validator.mjs +121 -0
- package/node_modules/typebox/build/error/errors.d.mts +214 -0
- package/node_modules/typebox/build/error/errors.mjs +18 -0
- package/node_modules/typebox/build/error/index.d.mts +1 -0
- package/node_modules/typebox/build/error/index.mjs +1 -0
- package/node_modules/typebox/build/format/_idna.d.mts +2 -0
- package/node_modules/typebox/build/format/_idna.mjs +216 -0
- package/node_modules/typebox/build/format/_puny.d.mts +1 -0
- package/node_modules/typebox/build/format/_puny.mjs +74 -0
- package/node_modules/typebox/build/format/_registry.d.mts +15 -0
- package/node_modules/typebox/build/format/_registry.mjs +96 -0
- package/node_modules/typebox/build/format/date.d.mts +6 -0
- package/node_modules/typebox/build/format/date.mjs +19 -0
- package/node_modules/typebox/build/format/date_time.d.mts +6 -0
- package/node_modules/typebox/build/format/date_time.mjs +11 -0
- package/node_modules/typebox/build/format/duration.d.mts +5 -0
- package/node_modules/typebox/build/format/duration.mjs +8 -0
- package/node_modules/typebox/build/format/email.d.mts +5 -0
- package/node_modules/typebox/build/format/email.mjs +8 -0
- package/node_modules/typebox/build/format/format.d.mts +22 -0
- package/node_modules/typebox/build/format/format.mjs +22 -0
- package/node_modules/typebox/build/format/hostname.d.mts +7 -0
- package/node_modules/typebox/build/format/hostname.mjs +18 -0
- package/node_modules/typebox/build/format/idn_email.d.mts +5 -0
- package/node_modules/typebox/build/format/idn_email.mjs +8 -0
- package/node_modules/typebox/build/format/idn_hostname.d.mts +7 -0
- package/node_modules/typebox/build/format/idn_hostname.mjs +19 -0
- package/node_modules/typebox/build/format/index.d.mts +4 -0
- package/node_modules/typebox/build/format/index.mjs +4 -0
- package/node_modules/typebox/build/format/ipv4.d.mts +6 -0
- package/node_modules/typebox/build/format/ipv4.mjs +38 -0
- package/node_modules/typebox/build/format/ipv6.d.mts +5 -0
- package/node_modules/typebox/build/format/ipv6.mjs +67 -0
- package/node_modules/typebox/build/format/iri.d.mts +5 -0
- package/node_modules/typebox/build/format/iri.mjs +13 -0
- package/node_modules/typebox/build/format/iri_reference.d.mts +5 -0
- package/node_modules/typebox/build/format/iri_reference.mjs +60 -0
- package/node_modules/typebox/build/format/json_pointer.d.mts +6 -0
- package/node_modules/typebox/build/format/json_pointer.mjs +9 -0
- package/node_modules/typebox/build/format/json_pointer_uri_fragment.d.mts +6 -0
- package/node_modules/typebox/build/format/json_pointer_uri_fragment.mjs +9 -0
- package/node_modules/typebox/build/format/regex.d.mts +6 -0
- package/node_modules/typebox/build/format/regex.mjs +17 -0
- package/node_modules/typebox/build/format/relative_json_pointer.d.mts +6 -0
- package/node_modules/typebox/build/format/relative_json_pointer.mjs +9 -0
- package/node_modules/typebox/build/format/time.d.mts +5 -0
- package/node_modules/typebox/build/format/time.mjs +27 -0
- package/node_modules/typebox/build/format/uri.d.mts +5 -0
- package/node_modules/typebox/build/format/uri.mjs +135 -0
- package/node_modules/typebox/build/format/uri_reference.d.mts +5 -0
- package/node_modules/typebox/build/format/uri_reference.mjs +9 -0
- package/node_modules/typebox/build/format/uri_template.d.mts +6 -0
- package/node_modules/typebox/build/format/uri_template.mjs +10 -0
- package/node_modules/typebox/build/format/url.d.mts +6 -0
- package/node_modules/typebox/build/format/url.mjs +9 -0
- package/node_modules/typebox/build/format/uuid.d.mts +6 -0
- package/node_modules/typebox/build/format/uuid.mjs +9 -0
- package/node_modules/typebox/build/guard/emit.d.mts +58 -0
- package/node_modules/typebox/build/guard/emit.mjs +194 -0
- package/node_modules/typebox/build/guard/globals.d.mts +35 -0
- package/node_modules/typebox/build/guard/globals.mjs +90 -0
- package/node_modules/typebox/build/guard/guard.d.mts +69 -0
- package/node_modules/typebox/build/guard/guard.mjs +217 -0
- package/node_modules/typebox/build/guard/index.d.mts +6 -0
- package/node_modules/typebox/build/guard/index.mjs +6 -0
- package/node_modules/typebox/build/guard/native.d.mts +20 -0
- package/node_modules/typebox/build/guard/native.mjs +60 -0
- package/node_modules/typebox/build/guard/string.d.mts +6 -0
- package/node_modules/typebox/build/guard/string.mjs +164 -0
- package/node_modules/typebox/build/index.d.mts +8 -0
- package/node_modules/typebox/build/index.mjs +14 -0
- package/node_modules/typebox/build/schema/build.d.mts +39 -0
- package/node_modules/typebox/build/schema/build.mjs +118 -0
- package/node_modules/typebox/build/schema/check.d.mts +6 -0
- package/node_modules/typebox/build/schema/check.mjs +14 -0
- package/node_modules/typebox/build/schema/compile.d.mts +22 -0
- package/node_modules/typebox/build/schema/compile.mjs +46 -0
- package/node_modules/typebox/build/schema/engine/_context.d.mts +35 -0
- package/node_modules/typebox/build/schema/engine/_context.mjs +129 -0
- package/node_modules/typebox/build/schema/engine/_exact_optional.d.mts +3 -0
- package/node_modules/typebox/build/schema/engine/_exact_optional.mjs +20 -0
- package/node_modules/typebox/build/schema/engine/_externals.d.mts +7 -0
- package/node_modules/typebox/build/schema/engine/_externals.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/_functions.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/_functions.mjs +47 -0
- package/node_modules/typebox/build/schema/engine/_guard.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/_guard.mjs +26 -0
- package/node_modules/typebox/build/schema/engine/_reducer.d.mts +4 -0
- package/node_modules/typebox/build/schema/engine/_reducer.mjs +45 -0
- package/node_modules/typebox/build/schema/engine/_refine.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/_refine.mjs +29 -0
- package/node_modules/typebox/build/schema/engine/_stack.d.mts +18 -0
- package/node_modules/typebox/build/schema/engine/_stack.mjs +107 -0
- package/node_modules/typebox/build/schema/engine/_unique.d.mts +2 -0
- package/node_modules/typebox/build/schema/engine/_unique.mjs +5 -0
- package/node_modules/typebox/build/schema/engine/additionalItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/additionalItems.mjs +50 -0
- package/node_modules/typebox/build/schema/engine/additionalProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/engine/additionalProperties.mjs +110 -0
- package/node_modules/typebox/build/schema/engine/allOf.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/allOf.mjs +47 -0
- package/node_modules/typebox/build/schema/engine/anyOf.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/anyOf.mjs +52 -0
- package/node_modules/typebox/build/schema/engine/boolean.d.mts +5 -0
- package/node_modules/typebox/build/schema/engine/boolean.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/const.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/const.mjs +30 -0
- package/node_modules/typebox/build/schema/engine/contains.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/contains.mjs +42 -0
- package/node_modules/typebox/build/schema/engine/dependencies.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/dependencies.mjs +45 -0
- package/node_modules/typebox/build/schema/engine/dependentRequired.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/dependentRequired.mjs +40 -0
- package/node_modules/typebox/build/schema/engine/dependentSchemas.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/dependentSchemas.mjs +38 -0
- package/node_modules/typebox/build/schema/engine/dynamicRef.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/dynamicRef.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/enum.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/enum.mjs +33 -0
- package/node_modules/typebox/build/schema/engine/exclusiveMaximum.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/exclusiveMaximum.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/exclusiveMinimum.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/exclusiveMinimum.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/format.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/format.mjs +26 -0
- package/node_modules/typebox/build/schema/engine/if.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/if.mjs +47 -0
- package/node_modules/typebox/build/schema/engine/index.d.mts +49 -0
- package/node_modules/typebox/build/schema/engine/index.mjs +55 -0
- package/node_modules/typebox/build/schema/engine/items.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/items.mjs +68 -0
- package/node_modules/typebox/build/schema/engine/maxContains.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/maxContains.mjs +42 -0
- package/node_modules/typebox/build/schema/engine/maxItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/maxItems.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/maxLength.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/maxLength.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/maxProperties.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/maxProperties.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/maximum.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/maximum.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/minContains.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/minContains.mjs +41 -0
- package/node_modules/typebox/build/schema/engine/minItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/minItems.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/minLength.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/minLength.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/minProperties.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/minProperties.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/minimum.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/minimum.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/multipleOf.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/multipleOf.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/not.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/not.mjs +37 -0
- package/node_modules/typebox/build/schema/engine/oneOf.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/oneOf.mjs +58 -0
- package/node_modules/typebox/build/schema/engine/pattern.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/pattern.mjs +28 -0
- package/node_modules/typebox/build/schema/engine/patternProperties.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/patternProperties.mjs +44 -0
- package/node_modules/typebox/build/schema/engine/prefixItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/prefixItems.mjs +35 -0
- package/node_modules/typebox/build/schema/engine/properties.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/properties.mjs +75 -0
- package/node_modules/typebox/build/schema/engine/propertyNames.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/propertyNames.mjs +39 -0
- package/node_modules/typebox/build/schema/engine/recursiveRef.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/recursiveRef.mjs +25 -0
- package/node_modules/typebox/build/schema/engine/ref.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/ref.mjs +58 -0
- package/node_modules/typebox/build/schema/engine/required.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/required.mjs +32 -0
- package/node_modules/typebox/build/schema/engine/schema.d.mts +9 -0
- package/node_modules/typebox/build/schema/engine/schema.mjs +352 -0
- package/node_modules/typebox/build/schema/engine/type.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/type.mjs +74 -0
- package/node_modules/typebox/build/schema/engine/unevaluatedItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/unevaluatedItems.mjs +51 -0
- package/node_modules/typebox/build/schema/engine/unevaluatedProperties.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/unevaluatedProperties.mjs +51 -0
- package/node_modules/typebox/build/schema/engine/uniqueItems.d.mts +6 -0
- package/node_modules/typebox/build/schema/engine/uniqueItems.mjs +51 -0
- package/node_modules/typebox/build/schema/errors.d.mts +6 -0
- package/node_modules/typebox/build/schema/errors.mjs +24 -0
- package/node_modules/typebox/build/schema/index.d.mts +3 -0
- package/node_modules/typebox/build/schema/index.mjs +9 -0
- package/node_modules/typebox/build/schema/parse.d.mts +13 -0
- package/node_modules/typebox/build/schema/parse.mjs +27 -0
- package/node_modules/typebox/build/schema/pointer/index.d.mts +2 -0
- package/node_modules/typebox/build/schema/pointer/index.mjs +2 -0
- package/node_modules/typebox/build/schema/pointer/pointer.d.mts +10 -0
- package/node_modules/typebox/build/schema/pointer/pointer.mjs +106 -0
- package/node_modules/typebox/build/schema/pointer/pointer_get.d.mts +9 -0
- package/node_modules/typebox/build/schema/pointer/pointer_get.mjs +2 -0
- package/node_modules/typebox/build/schema/resolve/index.d.mts +1 -0
- package/node_modules/typebox/build/schema/resolve/index.mjs +1 -0
- package/node_modules/typebox/build/schema/resolve/ref.d.mts +3 -0
- package/node_modules/typebox/build/schema/resolve/ref.mjs +146 -0
- package/node_modules/typebox/build/schema/resolve/resolve.d.mts +1 -0
- package/node_modules/typebox/build/schema/resolve/resolve.mjs +1 -0
- package/node_modules/typebox/build/schema/schema.d.mts +10 -0
- package/node_modules/typebox/build/schema/schema.mjs +10 -0
- package/node_modules/typebox/build/schema/static/_canonical.d.mts +7 -0
- package/node_modules/typebox/build/schema/static/_canonical.mjs +2 -0
- package/node_modules/typebox/build/schema/static/_comparer.d.mts +6 -0
- package/node_modules/typebox/build/schema/static/_comparer.mjs +2 -0
- package/node_modules/typebox/build/schema/static/_elements.d.mts +18 -0
- package/node_modules/typebox/build/schema/static/_elements.mjs +2 -0
- package/node_modules/typebox/build/schema/static/additionalProperties.d.mts +7 -0
- package/node_modules/typebox/build/schema/static/additionalProperties.mjs +3 -0
- package/node_modules/typebox/build/schema/static/allOf.d.mts +3 -0
- package/node_modules/typebox/build/schema/static/allOf.mjs +2 -0
- package/node_modules/typebox/build/schema/static/anyOf.d.mts +3 -0
- package/node_modules/typebox/build/schema/static/anyOf.mjs +2 -0
- package/node_modules/typebox/build/schema/static/const.d.mts +1 -0
- package/node_modules/typebox/build/schema/static/const.mjs +2 -0
- package/node_modules/typebox/build/schema/static/enum.d.mts +1 -0
- package/node_modules/typebox/build/schema/static/enum.mjs +2 -0
- package/node_modules/typebox/build/schema/static/if.d.mts +15 -0
- package/node_modules/typebox/build/schema/static/if.mjs +2 -0
- package/node_modules/typebox/build/schema/static/index.d.mts +1 -0
- package/node_modules/typebox/build/schema/static/index.mjs +1 -0
- package/node_modules/typebox/build/schema/static/items.d.mts +7 -0
- package/node_modules/typebox/build/schema/static/items.mjs +2 -0
- package/node_modules/typebox/build/schema/static/oneOf.d.mts +3 -0
- package/node_modules/typebox/build/schema/static/oneOf.mjs +2 -0
- package/node_modules/typebox/build/schema/static/patternProperties.d.mts +7 -0
- package/node_modules/typebox/build/schema/static/patternProperties.mjs +2 -0
- package/node_modules/typebox/build/schema/static/prefixItems.d.mts +3 -0
- package/node_modules/typebox/build/schema/static/prefixItems.mjs +2 -0
- package/node_modules/typebox/build/schema/static/properties.d.mts +32 -0
- package/node_modules/typebox/build/schema/static/properties.mjs +2 -0
- package/node_modules/typebox/build/schema/static/ref.d.mts +8 -0
- package/node_modules/typebox/build/schema/static/ref.mjs +3 -0
- package/node_modules/typebox/build/schema/static/required.d.mts +3 -0
- package/node_modules/typebox/build/schema/static/required.mjs +3 -0
- package/node_modules/typebox/build/schema/static/schema.d.mts +56 -0
- package/node_modules/typebox/build/schema/static/schema.mjs +2 -0
- package/node_modules/typebox/build/schema/static/static.d.mts +4 -0
- package/node_modules/typebox/build/schema/static/static.mjs +3 -0
- package/node_modules/typebox/build/schema/static/type.d.mts +4 -0
- package/node_modules/typebox/build/schema/static/type.mjs +3 -0
- package/node_modules/typebox/build/schema/static/unevaluatedProperties.d.mts +7 -0
- package/node_modules/typebox/build/schema/static/unevaluatedProperties.mjs +3 -0
- package/node_modules/typebox/build/schema/types/_guard.d.mts +10 -0
- package/node_modules/typebox/build/schema/types/_guard.mjs +16 -0
- package/node_modules/typebox/build/schema/types/_refine.d.mts +13 -0
- package/node_modules/typebox/build/schema/types/_refine.mjs +18 -0
- package/node_modules/typebox/build/schema/types/additionalItems.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/additionalItems.mjs +14 -0
- package/node_modules/typebox/build/schema/types/additionalProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/additionalProperties.mjs +14 -0
- package/node_modules/typebox/build/schema/types/allOf.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/allOf.mjs +15 -0
- package/node_modules/typebox/build/schema/types/anchor.d.mts +8 -0
- package/node_modules/typebox/build/schema/types/anchor.mjs +12 -0
- package/node_modules/typebox/build/schema/types/anyOf.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/anyOf.mjs +15 -0
- package/node_modules/typebox/build/schema/types/const.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/const.mjs +12 -0
- package/node_modules/typebox/build/schema/types/contains.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/contains.mjs +14 -0
- package/node_modules/typebox/build/schema/types/contentEncoding.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/contentEncoding.mjs +13 -0
- package/node_modules/typebox/build/schema/types/contentMediaType.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/contentMediaType.mjs +13 -0
- package/node_modules/typebox/build/schema/types/default.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/default.mjs +12 -0
- package/node_modules/typebox/build/schema/types/defs.d.mts +6 -0
- package/node_modules/typebox/build/schema/types/defs.mjs +12 -0
- package/node_modules/typebox/build/schema/types/dependencies.d.mts +11 -0
- package/node_modules/typebox/build/schema/types/dependencies.mjs +16 -0
- package/node_modules/typebox/build/schema/types/dependentRequired.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/dependentRequired.mjs +15 -0
- package/node_modules/typebox/build/schema/types/dependentSchemas.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/dependentSchemas.mjs +15 -0
- package/node_modules/typebox/build/schema/types/dynamicAnchor.d.mts +8 -0
- package/node_modules/typebox/build/schema/types/dynamicAnchor.mjs +12 -0
- package/node_modules/typebox/build/schema/types/dynamicRef.d.mts +8 -0
- package/node_modules/typebox/build/schema/types/dynamicRef.mjs +12 -0
- package/node_modules/typebox/build/schema/types/else.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/else.mjs +14 -0
- package/node_modules/typebox/build/schema/types/enum.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/enum.mjs +13 -0
- package/node_modules/typebox/build/schema/types/exclusiveMaximum.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/exclusiveMaximum.mjs +13 -0
- package/node_modules/typebox/build/schema/types/exclusiveMinimum.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/exclusiveMinimum.mjs +13 -0
- package/node_modules/typebox/build/schema/types/format.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/format.mjs +13 -0
- package/node_modules/typebox/build/schema/types/id.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/id.mjs +13 -0
- package/node_modules/typebox/build/schema/types/if.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/if.mjs +14 -0
- package/node_modules/typebox/build/schema/types/index.d.mts +54 -0
- package/node_modules/typebox/build/schema/types/index.mjs +60 -0
- package/node_modules/typebox/build/schema/types/items.d.mts +19 -0
- package/node_modules/typebox/build/schema/types/items.mjs +26 -0
- package/node_modules/typebox/build/schema/types/maxContains.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/maxContains.mjs +13 -0
- package/node_modules/typebox/build/schema/types/maxItems.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/maxItems.mjs +13 -0
- package/node_modules/typebox/build/schema/types/maxLength.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/maxLength.mjs +13 -0
- package/node_modules/typebox/build/schema/types/maxProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/maxProperties.mjs +13 -0
- package/node_modules/typebox/build/schema/types/maximum.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/maximum.mjs +13 -0
- package/node_modules/typebox/build/schema/types/minContains.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/minContains.mjs +13 -0
- package/node_modules/typebox/build/schema/types/minItems.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/minItems.mjs +13 -0
- package/node_modules/typebox/build/schema/types/minLength.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/minLength.mjs +13 -0
- package/node_modules/typebox/build/schema/types/minProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/minProperties.mjs +13 -0
- package/node_modules/typebox/build/schema/types/minimum.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/minimum.mjs +13 -0
- package/node_modules/typebox/build/schema/types/multipleOf.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/multipleOf.mjs +13 -0
- package/node_modules/typebox/build/schema/types/not.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/not.mjs +14 -0
- package/node_modules/typebox/build/schema/types/oneOf.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/oneOf.mjs +15 -0
- package/node_modules/typebox/build/schema/types/pattern.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/pattern.mjs +14 -0
- package/node_modules/typebox/build/schema/types/patternProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/patternProperties.mjs +15 -0
- package/node_modules/typebox/build/schema/types/prefixItems.d.mts +8 -0
- package/node_modules/typebox/build/schema/types/prefixItems.mjs +14 -0
- package/node_modules/typebox/build/schema/types/properties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/properties.mjs +15 -0
- package/node_modules/typebox/build/schema/types/propertyNames.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/propertyNames.mjs +15 -0
- package/node_modules/typebox/build/schema/types/recursiveAnchor.d.mts +12 -0
- package/node_modules/typebox/build/schema/types/recursiveAnchor.mjs +19 -0
- package/node_modules/typebox/build/schema/types/recursiveRef.d.mts +8 -0
- package/node_modules/typebox/build/schema/types/recursiveRef.mjs +12 -0
- package/node_modules/typebox/build/schema/types/ref.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/ref.mjs +13 -0
- package/node_modules/typebox/build/schema/types/required.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/required.mjs +14 -0
- package/node_modules/typebox/build/schema/types/schema.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/schema.mjs +14 -0
- package/node_modules/typebox/build/schema/types/then.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/then.mjs +14 -0
- package/node_modules/typebox/build/schema/types/type.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/type.mjs +15 -0
- package/node_modules/typebox/build/schema/types/unevaluatedItems.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/unevaluatedItems.mjs +14 -0
- package/node_modules/typebox/build/schema/types/unevaluatedProperties.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/unevaluatedProperties.mjs +14 -0
- package/node_modules/typebox/build/schema/types/uniqueItems.d.mts +9 -0
- package/node_modules/typebox/build/schema/types/uniqueItems.mjs +13 -0
- package/node_modules/typebox/build/system/arguments/arguments.d.mts +5 -0
- package/node_modules/typebox/build/system/arguments/arguments.mjs +9 -0
- package/node_modules/typebox/build/system/arguments/index.d.mts +1 -0
- package/node_modules/typebox/build/system/arguments/index.mjs +1 -0
- package/node_modules/typebox/build/system/environment/environment.d.mts +1 -0
- package/node_modules/typebox/build/system/environment/environment.mjs +1 -0
- package/node_modules/typebox/build/system/environment/evaluate.d.mts +9 -0
- package/node_modules/typebox/build/system/environment/evaluate.mjs +37 -0
- package/node_modules/typebox/build/system/environment/index.d.mts +1 -0
- package/node_modules/typebox/build/system/environment/index.mjs +1 -0
- package/node_modules/typebox/build/system/hashing/hash.d.mts +4 -0
- package/node_modules/typebox/build/system/hashing/hash.mjs +232 -0
- package/node_modules/typebox/build/system/hashing/index.d.mts +1 -0
- package/node_modules/typebox/build/system/hashing/index.mjs +1 -0
- package/node_modules/typebox/build/system/index.d.mts +4 -0
- package/node_modules/typebox/build/system/index.mjs +4 -0
- package/node_modules/typebox/build/system/locale/_config.d.mts +7 -0
- package/node_modules/typebox/build/system/locale/_config.mjs +15 -0
- package/node_modules/typebox/build/system/locale/_locale.d.mts +40 -0
- package/node_modules/typebox/build/system/locale/_locale.mjs +40 -0
- package/node_modules/typebox/build/system/locale/ar_001.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ar_001.mjs +41 -0
- package/node_modules/typebox/build/system/locale/bn_BD.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/bn_BD.mjs +41 -0
- package/node_modules/typebox/build/system/locale/cs_CZ.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/cs_CZ.mjs +41 -0
- package/node_modules/typebox/build/system/locale/de_DE.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/de_DE.mjs +41 -0
- package/node_modules/typebox/build/system/locale/el_GR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/el_GR.mjs +41 -0
- package/node_modules/typebox/build/system/locale/en_US.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/en_US.mjs +40 -0
- package/node_modules/typebox/build/system/locale/es_419.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/es_419.mjs +41 -0
- package/node_modules/typebox/build/system/locale/es_AR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/es_AR.mjs +41 -0
- package/node_modules/typebox/build/system/locale/es_ES.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/es_ES.mjs +41 -0
- package/node_modules/typebox/build/system/locale/es_MX.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/es_MX.mjs +41 -0
- package/node_modules/typebox/build/system/locale/fa_IR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/fa_IR.mjs +41 -0
- package/node_modules/typebox/build/system/locale/fil_PH.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/fil_PH.mjs +41 -0
- package/node_modules/typebox/build/system/locale/fr_CA.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/fr_CA.mjs +41 -0
- package/node_modules/typebox/build/system/locale/fr_FR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/fr_FR.mjs +41 -0
- package/node_modules/typebox/build/system/locale/ha_NG.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ha_NG.mjs +41 -0
- package/node_modules/typebox/build/system/locale/hi_IN.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/hi_IN.mjs +41 -0
- package/node_modules/typebox/build/system/locale/hu_HU.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/hu_HU.mjs +41 -0
- package/node_modules/typebox/build/system/locale/id_ID.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/id_ID.mjs +41 -0
- package/node_modules/typebox/build/system/locale/index.d.mts +1 -0
- package/node_modules/typebox/build/system/locale/index.mjs +1 -0
- package/node_modules/typebox/build/system/locale/it_IT.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/it_IT.mjs +41 -0
- package/node_modules/typebox/build/system/locale/ja_JP.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ja_JP.mjs +41 -0
- package/node_modules/typebox/build/system/locale/ko_KR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ko_KR.mjs +41 -0
- package/node_modules/typebox/build/system/locale/ms_MY.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ms_MY.mjs +41 -0
- package/node_modules/typebox/build/system/locale/nl_NL.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/nl_NL.mjs +41 -0
- package/node_modules/typebox/build/system/locale/pl_PL.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/pl_PL.mjs +41 -0
- package/node_modules/typebox/build/system/locale/pt_BR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/pt_BR.mjs +41 -0
- package/node_modules/typebox/build/system/locale/pt_PT.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/pt_PT.mjs +41 -0
- package/node_modules/typebox/build/system/locale/ro_RO.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ro_RO.mjs +41 -0
- package/node_modules/typebox/build/system/locale/ru_RU.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ru_RU.mjs +41 -0
- package/node_modules/typebox/build/system/locale/sv_SE.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/sv_SE.mjs +41 -0
- package/node_modules/typebox/build/system/locale/sw_TZ.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/sw_TZ.mjs +41 -0
- package/node_modules/typebox/build/system/locale/th_TH.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/th_TH.mjs +41 -0
- package/node_modules/typebox/build/system/locale/tr_TR.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/tr_TR.mjs +41 -0
- package/node_modules/typebox/build/system/locale/uk_UA.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/uk_UA.mjs +41 -0
- package/node_modules/typebox/build/system/locale/ur_PK.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/ur_PK.mjs +41 -0
- package/node_modules/typebox/build/system/locale/vi_VN.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/vi_VN.mjs +41 -0
- package/node_modules/typebox/build/system/locale/yo_NG.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/yo_NG.mjs +41 -0
- package/node_modules/typebox/build/system/locale/zh_Hans.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/zh_Hans.mjs +41 -0
- package/node_modules/typebox/build/system/locale/zh_Hant.d.mts +3 -0
- package/node_modules/typebox/build/system/locale/zh_Hant.mjs +41 -0
- package/node_modules/typebox/build/system/memory/assign.d.mts +14 -0
- package/node_modules/typebox/build/system/memory/assign.mjs +11 -0
- package/node_modules/typebox/build/system/memory/clone.d.mts +6 -0
- package/node_modules/typebox/build/system/memory/clone.mjs +63 -0
- package/node_modules/typebox/build/system/memory/create.d.mts +8 -0
- package/node_modules/typebox/build/system/memory/create.mjs +30 -0
- package/node_modules/typebox/build/system/memory/discard.d.mts +4 -0
- package/node_modules/typebox/build/system/memory/discard.mjs +17 -0
- package/node_modules/typebox/build/system/memory/index.d.mts +1 -0
- package/node_modules/typebox/build/system/memory/index.mjs +1 -0
- package/node_modules/typebox/build/system/memory/memory.d.mts +6 -0
- package/node_modules/typebox/build/system/memory/memory.mjs +7 -0
- package/node_modules/typebox/build/system/memory/metrics.d.mts +14 -0
- package/node_modules/typebox/build/system/memory/metrics.mjs +8 -0
- package/node_modules/typebox/build/system/memory/update.d.mts +7 -0
- package/node_modules/typebox/build/system/memory/update.mjs +32 -0
- package/node_modules/typebox/build/system/settings/index.d.mts +1 -0
- package/node_modules/typebox/build/system/settings/index.mjs +1 -0
- package/node_modules/typebox/build/system/settings/settings.d.mts +56 -0
- package/node_modules/typebox/build/system/settings/settings.mjs +32 -0
- package/node_modules/typebox/build/system/system.d.mts +6 -0
- package/node_modules/typebox/build/system/system.mjs +6 -0
- package/node_modules/typebox/build/system/unreachable/index.d.mts +1 -0
- package/node_modules/typebox/build/system/unreachable/index.mjs +1 -0
- package/node_modules/typebox/build/system/unreachable/unreachable.d.mts +3 -0
- package/node_modules/typebox/build/system/unreachable/unreachable.mjs +6 -0
- package/node_modules/typebox/build/type/action/_add_immutable.d.mts +11 -0
- package/node_modules/typebox/build/type/action/_add_immutable.mjs +11 -0
- package/node_modules/typebox/build/type/action/_add_optional.d.mts +11 -0
- package/node_modules/typebox/build/type/action/_add_optional.mjs +11 -0
- package/node_modules/typebox/build/type/action/_add_readonly.d.mts +11 -0
- package/node_modules/typebox/build/type/action/_add_readonly.mjs +11 -0
- package/node_modules/typebox/build/type/action/_remove_immutable.d.mts +11 -0
- package/node_modules/typebox/build/type/action/_remove_immutable.mjs +11 -0
- package/node_modules/typebox/build/type/action/_remove_optional.d.mts +11 -0
- package/node_modules/typebox/build/type/action/_remove_optional.mjs +11 -0
- package/node_modules/typebox/build/type/action/_remove_readonly.d.mts +11 -0
- package/node_modules/typebox/build/type/action/_remove_readonly.mjs +11 -0
- package/node_modules/typebox/build/type/action/awaited.d.mts +15 -0
- package/node_modules/typebox/build/type/action/awaited.mjs +15 -0
- package/node_modules/typebox/build/type/action/capitalize.d.mts +11 -0
- package/node_modules/typebox/build/type/action/capitalize.mjs +11 -0
- package/node_modules/typebox/build/type/action/conditional.d.mts +12 -0
- package/node_modules/typebox/build/type/action/conditional.mjs +13 -0
- package/node_modules/typebox/build/type/action/constructor_parameters.d.mts +11 -0
- package/node_modules/typebox/build/type/action/constructor_parameters.mjs +11 -0
- package/node_modules/typebox/build/type/action/evaluate.d.mts +11 -0
- package/node_modules/typebox/build/type/action/evaluate.mjs +11 -0
- package/node_modules/typebox/build/type/action/exclude.d.mts +11 -0
- package/node_modules/typebox/build/type/action/exclude.mjs +11 -0
- package/node_modules/typebox/build/type/action/extract.d.mts +11 -0
- package/node_modules/typebox/build/type/action/extract.mjs +11 -0
- package/node_modules/typebox/build/type/action/index.d.mts +31 -0
- package/node_modules/typebox/build/type/action/index.mjs +31 -0
- package/node_modules/typebox/build/type/action/indexed.d.mts +14 -0
- package/node_modules/typebox/build/type/action/indexed.mjs +14 -0
- package/node_modules/typebox/build/type/action/instance_type.d.mts +11 -0
- package/node_modules/typebox/build/type/action/instance_type.mjs +11 -0
- package/node_modules/typebox/build/type/action/interface.d.mts +14 -0
- package/node_modules/typebox/build/type/action/interface.mjs +22 -0
- package/node_modules/typebox/build/type/action/keyof.d.mts +11 -0
- package/node_modules/typebox/build/type/action/keyof.mjs +11 -0
- package/node_modules/typebox/build/type/action/lowercase.d.mts +11 -0
- package/node_modules/typebox/build/type/action/lowercase.mjs +11 -0
- package/node_modules/typebox/build/type/action/mapped.d.mts +13 -0
- package/node_modules/typebox/build/type/action/mapped.mjs +13 -0
- package/node_modules/typebox/build/type/action/module.d.mts +13 -0
- package/node_modules/typebox/build/type/action/module.mjs +13 -0
- package/node_modules/typebox/build/type/action/non_nullable.d.mts +11 -0
- package/node_modules/typebox/build/type/action/non_nullable.mjs +11 -0
- package/node_modules/typebox/build/type/action/omit.d.mts +14 -0
- package/node_modules/typebox/build/type/action/omit.mjs +14 -0
- package/node_modules/typebox/build/type/action/parameters.d.mts +11 -0
- package/node_modules/typebox/build/type/action/parameters.mjs +11 -0
- package/node_modules/typebox/build/type/action/partial.d.mts +11 -0
- package/node_modules/typebox/build/type/action/partial.mjs +11 -0
- package/node_modules/typebox/build/type/action/pick.d.mts +14 -0
- package/node_modules/typebox/build/type/action/pick.mjs +14 -0
- package/node_modules/typebox/build/type/action/readonly_object.d.mts +16 -0
- package/node_modules/typebox/build/type/action/readonly_object.mjs +16 -0
- package/node_modules/typebox/build/type/action/required.d.mts +11 -0
- package/node_modules/typebox/build/type/action/required.mjs +11 -0
- package/node_modules/typebox/build/type/action/return_type.d.mts +11 -0
- package/node_modules/typebox/build/type/action/return_type.mjs +11 -0
- package/node_modules/typebox/build/type/action/uncapitalize.d.mts +11 -0
- package/node_modules/typebox/build/type/action/uncapitalize.mjs +11 -0
- package/node_modules/typebox/build/type/action/uppercase.d.mts +11 -0
- package/node_modules/typebox/build/type/action/uppercase.mjs +11 -0
- package/node_modules/typebox/build/type/action/with.d.mts +21 -0
- package/node_modules/typebox/build/type/action/with.mjs +19 -0
- package/node_modules/typebox/build/type/engine/awaited/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/awaited/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/awaited/instantiate.d.mts +11 -0
- package/node_modules/typebox/build/type/engine/awaited/instantiate.mjs +20 -0
- package/node_modules/typebox/build/type/engine/call/distribute_arguments.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/call/distribute_arguments.mjs +53 -0
- package/node_modules/typebox/build/type/engine/call/instantiate.d.mts +21 -0
- package/node_modules/typebox/build/type/engine/call/instantiate.mjs +49 -0
- package/node_modules/typebox/build/type/engine/call/resolve_arguments.d.mts +13 -0
- package/node_modules/typebox/build/type/engine/call/resolve_arguments.mjs +33 -0
- package/node_modules/typebox/build/type/engine/call/resolve_target.d.mts +25 -0
- package/node_modules/typebox/build/type/engine/call/resolve_target.mjs +27 -0
- package/node_modules/typebox/build/type/engine/conditional/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/conditional/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/conditional/instantiate.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/conditional/instantiate.mjs +23 -0
- package/node_modules/typebox/build/type/engine/constructor_parameters/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/constructor_parameters/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.d.mts +14 -0
- package/node_modules/typebox/build/type/engine/constructor_parameters/instantiate.mjs +25 -0
- package/node_modules/typebox/build/type/engine/cyclic/candidates.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/cyclic/candidates.mjs +19 -0
- package/node_modules/typebox/build/type/engine/cyclic/check.d.mts +24 -0
- package/node_modules/typebox/build/type/engine/cyclic/check.mjs +51 -0
- package/node_modules/typebox/build/type/engine/cyclic/dependencies.d.mts +25 -0
- package/node_modules/typebox/build/type/engine/cyclic/dependencies.mjs +53 -0
- package/node_modules/typebox/build/type/engine/cyclic/extends.d.mts +31 -0
- package/node_modules/typebox/build/type/engine/cyclic/extends.mjs +53 -0
- package/node_modules/typebox/build/type/engine/cyclic/index.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/cyclic/index.mjs +6 -0
- package/node_modules/typebox/build/type/engine/cyclic/instantiate.d.mts +17 -0
- package/node_modules/typebox/build/type/engine/cyclic/instantiate.mjs +31 -0
- package/node_modules/typebox/build/type/engine/cyclic/target.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/cyclic/target.mjs +16 -0
- package/node_modules/typebox/build/type/engine/enum/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/enum/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/enum/typescript_enum_to_enum_values.mjs +9 -0
- package/node_modules/typebox/build/type/engine/evaluate/broaden.d.mts +16 -0
- package/node_modules/typebox/build/type/engine/evaluate/broaden.mjs +47 -0
- package/node_modules/typebox/build/type/engine/evaluate/compare.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/evaluate/compare.mjs +22 -0
- package/node_modules/typebox/build/type/engine/evaluate/composite.d.mts +34 -0
- package/node_modules/typebox/build/type/engine/evaluate/composite.mjs +67 -0
- package/node_modules/typebox/build/type/engine/evaluate/distribute.d.mts +27 -0
- package/node_modules/typebox/build/type/engine/evaluate/distribute.mjs +45 -0
- package/node_modules/typebox/build/type/engine/evaluate/evaluate.d.mts +26 -0
- package/node_modules/typebox/build/type/engine/evaluate/evaluate.mjs +51 -0
- package/node_modules/typebox/build/type/engine/evaluate/flatten.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/evaluate/flatten.mjs +11 -0
- package/node_modules/typebox/build/type/engine/evaluate/index.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/evaluate/index.mjs +8 -0
- package/node_modules/typebox/build/type/engine/evaluate/instantiate.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/evaluate/instantiate.mjs +12 -0
- package/node_modules/typebox/build/type/engine/evaluate/narrow.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/evaluate/narrow.mjs +11 -0
- package/node_modules/typebox/build/type/engine/exclude/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/exclude/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/exclude/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/exclude/instantiate.mjs +16 -0
- package/node_modules/typebox/build/type/engine/exclude/operation.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/exclude/operation.mjs +23 -0
- package/node_modules/typebox/build/type/engine/extract/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/extract/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/extract/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/extract/instantiate.mjs +16 -0
- package/node_modules/typebox/build/type/engine/extract/operation.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/extract/operation.mjs +23 -0
- package/node_modules/typebox/build/type/engine/helpers/index.d.mts +3 -0
- package/node_modules/typebox/build/type/engine/helpers/index.mjs +3 -0
- package/node_modules/typebox/build/type/engine/helpers/keys.d.mts +3 -0
- package/node_modules/typebox/build/type/engine/helpers/keys.mjs +8 -0
- package/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.d.mts +7 -0
- package/node_modules/typebox/build/type/engine/helpers/keys_to_indexer.mjs +15 -0
- package/node_modules/typebox/build/type/engine/helpers/union.d.mts +7 -0
- package/node_modules/typebox/build/type/engine/helpers/union.mjs +3 -0
- package/node_modules/typebox/build/type/engine/immutable/instantiate_add.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/immutable/instantiate_add.mjs +14 -0
- package/node_modules/typebox/build/type/engine/immutable/instantiate_remove.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/immutable/instantiate_remove.mjs +14 -0
- package/node_modules/typebox/build/type/engine/index.d.mts +31 -0
- package/node_modules/typebox/build/type/engine/index.mjs +37 -0
- package/node_modules/typebox/build/type/engine/indexable/from_cyclic.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/indexable/from_cyclic.mjs +8 -0
- package/node_modules/typebox/build/type/engine/indexable/from_dependent.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/indexable/from_dependent.mjs +8 -0
- package/node_modules/typebox/build/type/engine/indexable/from_enum.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/indexable/from_enum.mjs +8 -0
- package/node_modules/typebox/build/type/engine/indexable/from_intersect.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/indexable/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/type/engine/indexable/from_literal.d.mts +3 -0
- package/node_modules/typebox/build/type/engine/indexable/from_literal.mjs +5 -0
- package/node_modules/typebox/build/type/engine/indexable/from_template_literal.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/indexable/from_template_literal.mjs +8 -0
- package/node_modules/typebox/build/type/engine/indexable/from_type.d.mts +19 -0
- package/node_modules/typebox/build/type/engine/indexable/from_type.mjs +25 -0
- package/node_modules/typebox/build/type/engine/indexable/from_union.d.mts +4 -0
- package/node_modules/typebox/build/type/engine/indexable/from_union.mjs +7 -0
- package/node_modules/typebox/build/type/engine/indexable/to_indexable.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/indexable/to_indexable.mjs +14 -0
- package/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/indexable/to_indexable_keys.mjs +12 -0
- package/node_modules/typebox/build/type/engine/indexed/array_indexer.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/indexed/array_indexer.mjs +18 -0
- package/node_modules/typebox/build/type/engine/indexed/from_array.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/indexed/from_array.mjs +35 -0
- package/node_modules/typebox/build/type/engine/indexed/from_object.d.mts +16 -0
- package/node_modules/typebox/build/type/engine/indexed/from_object.mjs +40 -0
- package/node_modules/typebox/build/type/engine/indexed/from_tuple.d.mts +13 -0
- package/node_modules/typebox/build/type/engine/indexed/from_tuple.mjs +35 -0
- package/node_modules/typebox/build/type/engine/indexed/from_type.d.mts +11 -0
- package/node_modules/typebox/build/type/engine/indexed/from_type.mjs +14 -0
- package/node_modules/typebox/build/type/engine/indexed/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/indexed/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/indexed/instantiate.d.mts +16 -0
- package/node_modules/typebox/build/type/engine/indexed/instantiate.mjs +26 -0
- package/node_modules/typebox/build/type/engine/instance_type/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/instance_type/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/instance_type/instantiate.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/instance_type/instantiate.mjs +21 -0
- package/node_modules/typebox/build/type/engine/instantiate.d.mts +183 -0
- package/node_modules/typebox/build/type/engine/instantiate.mjs +164 -0
- package/node_modules/typebox/build/type/engine/interface/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/interface/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/interface/instantiate.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/interface/instantiate.mjs +23 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_literal.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_literal.mjs +9 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_template_literal.mjs +8 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_type.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_type.mjs +13 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_union.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/intrinsics/from_union.mjs +7 -0
- package/node_modules/typebox/build/type/engine/intrinsics/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/intrinsics/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/intrinsics/instantiate.d.mts +38 -0
- package/node_modules/typebox/build/type/engine/intrinsics/instantiate.mjs +52 -0
- package/node_modules/typebox/build/type/engine/intrinsics/mapping.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/intrinsics/mapping.mjs +4 -0
- package/node_modules/typebox/build/type/engine/keyof/from_any.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/keyof/from_any.mjs +8 -0
- package/node_modules/typebox/build/type/engine/keyof/from_array.d.mts +4 -0
- package/node_modules/typebox/build/type/engine/keyof/from_array.mjs +5 -0
- package/node_modules/typebox/build/type/engine/keyof/from_object.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/keyof/from_object.mjs +20 -0
- package/node_modules/typebox/build/type/engine/keyof/from_record.d.mts +4 -0
- package/node_modules/typebox/build/type/engine/keyof/from_record.mjs +5 -0
- package/node_modules/typebox/build/type/engine/keyof/from_tuple.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/keyof/from_tuple.mjs +7 -0
- package/node_modules/typebox/build/type/engine/keyof/from_type.d.mts +15 -0
- package/node_modules/typebox/build/type/engine/keyof/from_type.mjs +23 -0
- package/node_modules/typebox/build/type/engine/keyof/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/keyof/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/keyof/instantiate.d.mts +16 -0
- package/node_modules/typebox/build/type/engine/keyof/instantiate.mjs +26 -0
- package/node_modules/typebox/build/type/engine/mapped/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/mapped/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/mapped/instantiate.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/mapped/instantiate.mjs +15 -0
- package/node_modules/typebox/build/type/engine/mapped/mapped_operation.d.mts +22 -0
- package/node_modules/typebox/build/type/engine/mapped/mapped_operation.mjs +42 -0
- package/node_modules/typebox/build/type/engine/mapped/mapped_variants.d.mts +17 -0
- package/node_modules/typebox/build/type/engine/mapped/mapped_variants.mjs +39 -0
- package/node_modules/typebox/build/type/engine/module/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/module/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/module/instantiate.d.mts +19 -0
- package/node_modules/typebox/build/type/engine/module/instantiate.mjs +36 -0
- package/node_modules/typebox/build/type/engine/non_nullable/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/non_nullable/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/non_nullable/instantiate.d.mts +14 -0
- package/node_modules/typebox/build/type/engine/non_nullable/instantiate.mjs +22 -0
- package/node_modules/typebox/build/type/engine/object/collapse.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/object/collapse.mjs +14 -0
- package/node_modules/typebox/build/type/engine/object/from_cyclic.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/object/from_cyclic.mjs +8 -0
- package/node_modules/typebox/build/type/engine/object/from_dependent.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/object/from_dependent.mjs +8 -0
- package/node_modules/typebox/build/type/engine/object/from_intersect.d.mts +17 -0
- package/node_modules/typebox/build/type/engine/object/from_intersect.mjs +22 -0
- package/node_modules/typebox/build/type/engine/object/from_object.d.mts +3 -0
- package/node_modules/typebox/build/type/engine/object/from_object.mjs +4 -0
- package/node_modules/typebox/build/type/engine/object/from_tuple.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/object/from_tuple.mjs +9 -0
- package/node_modules/typebox/build/type/engine/object/from_type.d.mts +16 -0
- package/node_modules/typebox/build/type/engine/object/from_type.mjs +23 -0
- package/node_modules/typebox/build/type/engine/object/from_union.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/object/from_union.mjs +19 -0
- package/node_modules/typebox/build/type/engine/object/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/object/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/omit/from_type.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/omit/from_type.mjs +18 -0
- package/node_modules/typebox/build/type/engine/omit/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/omit/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/omit/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/omit/instantiate.mjs +16 -0
- package/node_modules/typebox/build/type/engine/optional/instantiate_add.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/optional/instantiate_add.mjs +14 -0
- package/node_modules/typebox/build/type/engine/optional/instantiate_remove.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/optional/instantiate_remove.mjs +14 -0
- package/node_modules/typebox/build/type/engine/parameters/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/parameters/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/parameters/instantiate.d.mts +14 -0
- package/node_modules/typebox/build/type/engine/parameters/instantiate.mjs +25 -0
- package/node_modules/typebox/build/type/engine/partial/from_cyclic.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/partial/from_cyclic.mjs +11 -0
- package/node_modules/typebox/build/type/engine/partial/from_dependent.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/partial/from_dependent.mjs +8 -0
- package/node_modules/typebox/build/type/engine/partial/from_intersect.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/partial/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/type/engine/partial/from_object.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/partial/from_object.mjs +11 -0
- package/node_modules/typebox/build/type/engine/partial/from_type.d.mts +14 -0
- package/node_modules/typebox/build/type/engine/partial/from_type.mjs +20 -0
- package/node_modules/typebox/build/type/engine/partial/from_union.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/partial/from_union.mjs +7 -0
- package/node_modules/typebox/build/type/engine/partial/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/partial/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/partial/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/partial/instantiate.mjs +15 -0
- package/node_modules/typebox/build/type/engine/patterns/index.d.mts +2 -0
- package/node_modules/typebox/build/type/engine/patterns/index.mjs +2 -0
- package/node_modules/typebox/build/type/engine/patterns/pattern.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/patterns/pattern.mjs +11 -0
- package/node_modules/typebox/build/type/engine/patterns/template.d.mts +7 -0
- package/node_modules/typebox/build/type/engine/patterns/template.mjs +20 -0
- package/node_modules/typebox/build/type/engine/pick/from_type.d.mts +13 -0
- package/node_modules/typebox/build/type/engine/pick/from_type.mjs +20 -0
- package/node_modules/typebox/build/type/engine/pick/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/pick/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/pick/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/pick/instantiate.mjs +16 -0
- package/node_modules/typebox/build/type/engine/readonly/instantiate_add.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/readonly/instantiate_add.mjs +14 -0
- package/node_modules/typebox/build/type/engine/readonly/instantiate_remove.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/readonly/instantiate_remove.mjs +14 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_array.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_array.mjs +7 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_cyclic.mjs +11 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_dependent.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_dependent.mjs +8 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_intersect.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_object.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_object.mjs +11 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_tuple.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_tuple.mjs +7 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_type.d.mts +18 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_type.mjs +25 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_union.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/readonly_object/from_union.mjs +7 -0
- package/node_modules/typebox/build/type/engine/readonly_object/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/readonly_object/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/readonly_object/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/readonly_object/instantiate.mjs +15 -0
- package/node_modules/typebox/build/type/engine/record/from_key.d.mts +24 -0
- package/node_modules/typebox/build/type/engine/record/from_key.mjs +40 -0
- package/node_modules/typebox/build/type/engine/record/from_key_any.d.mts +4 -0
- package/node_modules/typebox/build/type/engine/record/from_key_any.mjs +6 -0
- package/node_modules/typebox/build/type/engine/record/from_key_boolean.d.mts +7 -0
- package/node_modules/typebox/build/type/engine/record/from_key_boolean.mjs +5 -0
- package/node_modules/typebox/build/type/engine/record/from_key_enum.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/record/from_key_enum.mjs +8 -0
- package/node_modules/typebox/build/type/engine/record/from_key_integer.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/record/from_key_integer.mjs +7 -0
- package/node_modules/typebox/build/type/engine/record/from_key_intersect.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/record/from_key_intersect.mjs +8 -0
- package/node_modules/typebox/build/type/engine/record/from_key_literal.d.mts +11 -0
- package/node_modules/typebox/build/type/engine/record/from_key_literal.mjs +10 -0
- package/node_modules/typebox/build/type/engine/record/from_key_number.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/record/from_key_number.mjs +7 -0
- package/node_modules/typebox/build/type/engine/record/from_key_string.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/record/from_key_string.mjs +12 -0
- package/node_modules/typebox/build/type/engine/record/from_key_template_literal.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/record/from_key_template_literal.mjs +12 -0
- package/node_modules/typebox/build/type/engine/record/from_key_union.d.mts +20 -0
- package/node_modules/typebox/build/type/engine/record/from_key_union.mjs +39 -0
- package/node_modules/typebox/build/type/engine/record/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/record/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/record/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/record/instantiate.mjs +17 -0
- package/node_modules/typebox/build/type/engine/record/record_create.d.mts +3 -0
- package/node_modules/typebox/build/type/engine/record/record_create.mjs +7 -0
- package/node_modules/typebox/build/type/engine/ref/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/ref/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/ref/instantiate.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/ref/instantiate.mjs +10 -0
- package/node_modules/typebox/build/type/engine/required/from_cyclic.d.mts +10 -0
- package/node_modules/typebox/build/type/engine/required/from_cyclic.mjs +11 -0
- package/node_modules/typebox/build/type/engine/required/from_dependent.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/required/from_dependent.mjs +8 -0
- package/node_modules/typebox/build/type/engine/required/from_intersect.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/required/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/type/engine/required/from_object.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/required/from_object.mjs +11 -0
- package/node_modules/typebox/build/type/engine/required/from_type.d.mts +14 -0
- package/node_modules/typebox/build/type/engine/required/from_type.mjs +20 -0
- package/node_modules/typebox/build/type/engine/required/from_union.d.mts +5 -0
- package/node_modules/typebox/build/type/engine/required/from_union.mjs +7 -0
- package/node_modules/typebox/build/type/engine/required/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/required/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/required/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/required/instantiate.mjs +15 -0
- package/node_modules/typebox/build/type/engine/rest/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/rest/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/rest/spread.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/rest/spread.mjs +19 -0
- package/node_modules/typebox/build/type/engine/return_type/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/return_type/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/return_type/instantiate.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/return_type/instantiate.mjs +21 -0
- package/node_modules/typebox/build/type/engine/template_literal/create.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/template_literal/create.mjs +5 -0
- package/node_modules/typebox/build/type/engine/template_literal/decode.d.mts +30 -0
- package/node_modules/typebox/build/type/engine/template_literal/decode.mjs +81 -0
- package/node_modules/typebox/build/type/engine/template_literal/encode.d.mts +33 -0
- package/node_modules/typebox/build/type/engine/template_literal/encode.mjs +81 -0
- package/node_modules/typebox/build/type/engine/template_literal/index.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/template_literal/index.mjs +6 -0
- package/node_modules/typebox/build/type/engine/template_literal/instantiate.d.mts +9 -0
- package/node_modules/typebox/build/type/engine/template_literal/instantiate.mjs +15 -0
- package/node_modules/typebox/build/type/engine/template_literal/is_finite.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/template_literal/is_finite.mjs +26 -0
- package/node_modules/typebox/build/type/engine/template_literal/is_pattern.d.mts +6 -0
- package/node_modules/typebox/build/type/engine/template_literal/is_pattern.mjs +10 -0
- package/node_modules/typebox/build/type/engine/template_literal/static.d.mts +18 -0
- package/node_modules/typebox/build/type/engine/template_literal/static.mjs +2 -0
- package/node_modules/typebox/build/type/engine/this/expand_this.d.mts +19 -0
- package/node_modules/typebox/build/type/engine/this/expand_this.mjs +32 -0
- package/node_modules/typebox/build/type/engine/tuple/to_object.d.mts +12 -0
- package/node_modules/typebox/build/type/engine/tuple/to_object.mjs +14 -0
- package/node_modules/typebox/build/type/engine/with/index.d.mts +1 -0
- package/node_modules/typebox/build/type/engine/with/index.mjs +1 -0
- package/node_modules/typebox/build/type/engine/with/instantiate.d.mts +8 -0
- package/node_modules/typebox/build/type/engine/with/instantiate.mjs +14 -0
- package/node_modules/typebox/build/type/extends/any.d.mts +9 -0
- package/node_modules/typebox/build/type/extends/any.mjs +12 -0
- package/node_modules/typebox/build/type/extends/array.d.mts +20 -0
- package/node_modules/typebox/build/type/extends/array.mjs +21 -0
- package/node_modules/typebox/build/type/extends/async_iterator.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/async_iterator.mjs +9 -0
- package/node_modules/typebox/build/type/extends/bigint.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/bigint.mjs +9 -0
- package/node_modules/typebox/build/type/extends/boolean.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/boolean.mjs +9 -0
- package/node_modules/typebox/build/type/extends/constructor.d.mts +10 -0
- package/node_modules/typebox/build/type/extends/constructor.mjs +17 -0
- package/node_modules/typebox/build/type/extends/dependent.d.mts +6 -0
- package/node_modules/typebox/build/type/extends/dependent.mjs +6 -0
- package/node_modules/typebox/build/type/extends/enum.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/enum.mjs +7 -0
- package/node_modules/typebox/build/type/extends/extends.d.mts +13 -0
- package/node_modules/typebox/build/type/extends/extends.mjs +17 -0
- package/node_modules/typebox/build/type/extends/extends_left.d.mts +57 -0
- package/node_modules/typebox/build/type/extends/extends_left.mjs +86 -0
- package/node_modules/typebox/build/type/extends/extends_right.d.mts +27 -0
- package/node_modules/typebox/build/type/extends/extends_right.mjs +49 -0
- package/node_modules/typebox/build/type/extends/function.d.mts +10 -0
- package/node_modules/typebox/build/type/extends/function.mjs +17 -0
- package/node_modules/typebox/build/type/extends/index.d.mts +2 -0
- package/node_modules/typebox/build/type/extends/index.mjs +2 -0
- package/node_modules/typebox/build/type/extends/inference.d.mts +34 -0
- package/node_modules/typebox/build/type/extends/inference.mjs +62 -0
- package/node_modules/typebox/build/type/extends/integer.d.mts +8 -0
- package/node_modules/typebox/build/type/extends/integer.mjs +10 -0
- package/node_modules/typebox/build/type/extends/intersect.d.mts +6 -0
- package/node_modules/typebox/build/type/extends/intersect.mjs +15 -0
- package/node_modules/typebox/build/type/extends/iterator.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/iterator.mjs +9 -0
- package/node_modules/typebox/build/type/extends/literal.d.mts +18 -0
- package/node_modules/typebox/build/type/extends/literal.mjs +44 -0
- package/node_modules/typebox/build/type/extends/never.d.mts +8 -0
- package/node_modules/typebox/build/type/extends/never.mjs +9 -0
- package/node_modules/typebox/build/type/extends/null.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/null.mjs +9 -0
- package/node_modules/typebox/build/type/extends/number.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/number.mjs +9 -0
- package/node_modules/typebox/build/type/extends/object.d.mts +25 -0
- package/node_modules/typebox/build/type/extends/object.mjs +87 -0
- package/node_modules/typebox/build/type/extends/parameters.d.mts +15 -0
- package/node_modules/typebox/build/type/extends/parameters.mjs +28 -0
- package/node_modules/typebox/build/type/extends/promise.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/promise.mjs +9 -0
- package/node_modules/typebox/build/type/extends/result.d.mts +24 -0
- package/node_modules/typebox/build/type/extends/result.mjs +36 -0
- package/node_modules/typebox/build/type/extends/return_type.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/return_type.mjs +9 -0
- package/node_modules/typebox/build/type/extends/string.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/string.mjs +9 -0
- package/node_modules/typebox/build/type/extends/symbol.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/symbol.mjs +9 -0
- package/node_modules/typebox/build/type/extends/template_literal.d.mts +6 -0
- package/node_modules/typebox/build/type/extends/template_literal.mjs +7 -0
- package/node_modules/typebox/build/type/extends/tuple.d.mts +22 -0
- package/node_modules/typebox/build/type/extends/tuple.mjs +61 -0
- package/node_modules/typebox/build/type/extends/undefined.d.mts +8 -0
- package/node_modules/typebox/build/type/extends/undefined.mjs +10 -0
- package/node_modules/typebox/build/type/extends/union.d.mts +11 -0
- package/node_modules/typebox/build/type/extends/union.mjs +24 -0
- package/node_modules/typebox/build/type/extends/unknown.d.mts +9 -0
- package/node_modules/typebox/build/type/extends/unknown.mjs +12 -0
- package/node_modules/typebox/build/type/extends/void.d.mts +7 -0
- package/node_modules/typebox/build/type/extends/void.mjs +9 -0
- package/node_modules/typebox/build/type/index.d.mts +5 -0
- package/node_modules/typebox/build/type/index.mjs +5 -0
- package/node_modules/typebox/build/type/script/index.d.mts +1 -0
- package/node_modules/typebox/build/type/script/index.mjs +1 -0
- package/node_modules/typebox/build/type/script/mapping.d.mts +365 -0
- package/node_modules/typebox/build/type/script/mapping.mjs +539 -0
- package/node_modules/typebox/build/type/script/parser.d.mts +262 -0
- package/node_modules/typebox/build/type/script/parser.mjs +136 -0
- package/node_modules/typebox/build/type/script/script.d.mts +16 -0
- package/node_modules/typebox/build/type/script/script.mjs +22 -0
- package/node_modules/typebox/build/type/script/token/bigint.d.mts +8 -0
- package/node_modules/typebox/build/type/script/token/bigint.mjs +14 -0
- package/node_modules/typebox/build/type/script/token/const.d.mts +11 -0
- package/node_modules/typebox/build/type/script/token/const.mjs +18 -0
- package/node_modules/typebox/build/type/script/token/ident.d.mts +16 -0
- package/node_modules/typebox/build/type/script/token/ident.mjs +26 -0
- package/node_modules/typebox/build/type/script/token/index.d.mts +12 -0
- package/node_modules/typebox/build/type/script/token/index.mjs +12 -0
- package/node_modules/typebox/build/type/script/token/integer.d.mts +11 -0
- package/node_modules/typebox/build/type/script/token/integer.mjs +19 -0
- package/node_modules/typebox/build/type/script/token/internal/char.d.mts +75 -0
- package/node_modules/typebox/build/type/script/token/internal/char.mjs +26 -0
- package/node_modules/typebox/build/type/script/token/internal/guard.d.mts +1 -0
- package/node_modules/typebox/build/type/script/token/internal/guard.mjs +15 -0
- package/node_modules/typebox/build/type/script/token/internal/many.d.mts +7 -0
- package/node_modules/typebox/build/type/script/token/internal/many.mjs +14 -0
- package/node_modules/typebox/build/type/script/token/internal/match.d.mts +6 -0
- package/node_modules/typebox/build/type/script/token/internal/match.mjs +11 -0
- package/node_modules/typebox/build/type/script/token/internal/optional.d.mts +5 -0
- package/node_modules/typebox/build/type/script/token/internal/optional.mjs +9 -0
- package/node_modules/typebox/build/type/script/token/internal/take.d.mts +6 -0
- package/node_modules/typebox/build/type/script/token/internal/take.mjs +30 -0
- package/node_modules/typebox/build/type/script/token/internal/trim.d.mts +19 -0
- package/node_modules/typebox/build/type/script/token/internal/trim.mjs +34 -0
- package/node_modules/typebox/build/type/script/token/number.d.mts +11 -0
- package/node_modules/typebox/build/type/script/token/number.mjs +19 -0
- package/node_modules/typebox/build/type/script/token/rest.d.mts +4 -0
- package/node_modules/typebox/build/type/script/token/rest.mjs +9 -0
- package/node_modules/typebox/build/type/script/token/span.d.mts +11 -0
- package/node_modules/typebox/build/type/script/token/span.mjs +24 -0
- package/node_modules/typebox/build/type/script/token/string.d.mts +11 -0
- package/node_modules/typebox/build/type/script/token/string.mjs +20 -0
- package/node_modules/typebox/build/type/script/token/unsigned_integer.d.mts +16 -0
- package/node_modules/typebox/build/type/script/token/unsigned_integer.mjs +26 -0
- package/node_modules/typebox/build/type/script/token/unsigned_number.d.mts +17 -0
- package/node_modules/typebox/build/type/script/token/unsigned_number.mjs +38 -0
- package/node_modules/typebox/build/type/script/token/until.d.mts +7 -0
- package/node_modules/typebox/build/type/script/token/until.mjs +21 -0
- package/node_modules/typebox/build/type/script/token/until_1.d.mts +5 -0
- package/node_modules/typebox/build/type/script/token/until_1.mjs +12 -0
- package/node_modules/typebox/build/type/types/_codec.d.mts +30 -0
- package/node_modules/typebox/build/type/types/_codec.mjs +61 -0
- package/node_modules/typebox/build/type/types/_immutable.d.mts +9 -0
- package/node_modules/typebox/build/type/types/_immutable.mjs +18 -0
- package/node_modules/typebox/build/type/types/_optional.d.mts +9 -0
- package/node_modules/typebox/build/type/types/_optional.mjs +18 -0
- package/node_modules/typebox/build/type/types/_readonly.d.mts +9 -0
- package/node_modules/typebox/build/type/types/_readonly.mjs +18 -0
- package/node_modules/typebox/build/type/types/_refine.d.mts +26 -0
- package/node_modules/typebox/build/type/types/_refine.mjs +37 -0
- package/node_modules/typebox/build/type/types/any.d.mts +10 -0
- package/node_modules/typebox/build/type/types/any.mjs +18 -0
- package/node_modules/typebox/build/type/types/array.d.mts +18 -0
- package/node_modules/typebox/build/type/types/array.mjs +25 -0
- package/node_modules/typebox/build/type/types/async_iterator.d.mts +20 -0
- package/node_modules/typebox/build/type/types/async_iterator.mjs +28 -0
- package/node_modules/typebox/build/type/types/base.d.mts +50 -0
- package/node_modules/typebox/build/type/types/base.mjs +84 -0
- package/node_modules/typebox/build/type/types/bigint.d.mts +12 -0
- package/node_modules/typebox/build/type/types/bigint.mjs +21 -0
- package/node_modules/typebox/build/type/types/boolean.d.mts +11 -0
- package/node_modules/typebox/build/type/types/boolean.mjs +17 -0
- package/node_modules/typebox/build/type/types/call.d.mts +16 -0
- package/node_modules/typebox/build/type/types/call.mjs +23 -0
- package/node_modules/typebox/build/type/types/constructor.d.mts +18 -0
- package/node_modules/typebox/build/type/types/constructor.mjs +24 -0
- package/node_modules/typebox/build/type/types/cyclic.d.mts +16 -0
- package/node_modules/typebox/build/type/types/cyclic.mjs +29 -0
- package/node_modules/typebox/build/type/types/deferred.d.mts +13 -0
- package/node_modules/typebox/build/type/types/deferred.mjs +16 -0
- package/node_modules/typebox/build/type/types/dependent.d.mts +17 -0
- package/node_modules/typebox/build/type/types/dependent.mjs +24 -0
- package/node_modules/typebox/build/type/types/enum.d.mts +16 -0
- package/node_modules/typebox/build/type/types/enum.mjs +17 -0
- package/node_modules/typebox/build/type/types/function.d.mts +21 -0
- package/node_modules/typebox/build/type/types/function.mjs +25 -0
- package/node_modules/typebox/build/type/types/generic.d.mts +13 -0
- package/node_modules/typebox/build/type/types/generic.mjs +17 -0
- package/node_modules/typebox/build/type/types/identifier.d.mts +11 -0
- package/node_modules/typebox/build/type/types/identifier.mjs +17 -0
- package/node_modules/typebox/build/type/types/index.d.mts +49 -0
- package/node_modules/typebox/build/type/types/index.mjs +55 -0
- package/node_modules/typebox/build/type/types/infer.d.mts +15 -0
- package/node_modules/typebox/build/type/types/infer.mjs +20 -0
- package/node_modules/typebox/build/type/types/integer.d.mts +12 -0
- package/node_modules/typebox/build/type/types/integer.mjs +21 -0
- package/node_modules/typebox/build/type/types/intersect.d.mts +15 -0
- package/node_modules/typebox/build/type/types/intersect.mjs +24 -0
- package/node_modules/typebox/build/type/types/iterator.d.mts +20 -0
- package/node_modules/typebox/build/type/types/iterator.mjs +28 -0
- package/node_modules/typebox/build/type/types/literal.d.mts +31 -0
- package/node_modules/typebox/build/type/types/literal.mjs +62 -0
- package/node_modules/typebox/build/type/types/never.d.mts +12 -0
- package/node_modules/typebox/build/type/types/never.mjs +22 -0
- package/node_modules/typebox/build/type/types/null.d.mts +11 -0
- package/node_modules/typebox/build/type/types/null.mjs +17 -0
- package/node_modules/typebox/build/type/types/number.d.mts +12 -0
- package/node_modules/typebox/build/type/types/number.mjs +21 -0
- package/node_modules/typebox/build/type/types/object.d.mts +18 -0
- package/node_modules/typebox/build/type/types/object.mjs +28 -0
- package/node_modules/typebox/build/type/types/parameter.d.mts +17 -0
- package/node_modules/typebox/build/type/types/parameter.mjs +21 -0
- package/node_modules/typebox/build/type/types/promise.d.mts +21 -0
- package/node_modules/typebox/build/type/types/promise.mjs +29 -0
- package/node_modules/typebox/build/type/types/properties.d.mts +43 -0
- package/node_modules/typebox/build/type/types/properties.mjs +15 -0
- package/node_modules/typebox/build/type/types/record.d.mts +46 -0
- package/node_modules/typebox/build/type/types/record.mjs +60 -0
- package/node_modules/typebox/build/type/types/ref.d.mts +19 -0
- package/node_modules/typebox/build/type/types/ref.mjs +18 -0
- package/node_modules/typebox/build/type/types/rest.d.mts +11 -0
- package/node_modules/typebox/build/type/types/rest.mjs +17 -0
- package/node_modules/typebox/build/type/types/schema.d.mts +176 -0
- package/node_modules/typebox/build/type/types/schema.mjs +15 -0
- package/node_modules/typebox/build/type/types/static.d.mts +49 -0
- package/node_modules/typebox/build/type/types/static.mjs +3 -0
- package/node_modules/typebox/build/type/types/string.d.mts +12 -0
- package/node_modules/typebox/build/type/types/string.mjs +22 -0
- package/node_modules/typebox/build/type/types/symbol.d.mts +11 -0
- package/node_modules/typebox/build/type/types/symbol.mjs +17 -0
- package/node_modules/typebox/build/type/types/template_literal.d.mts +28 -0
- package/node_modules/typebox/build/type/types/template_literal.mjs +37 -0
- package/node_modules/typebox/build/type/types/this.d.mts +14 -0
- package/node_modules/typebox/build/type/types/this.mjs +17 -0
- package/node_modules/typebox/build/type/types/tuple.d.mts +38 -0
- package/node_modules/typebox/build/type/types/tuple.mjs +25 -0
- package/node_modules/typebox/build/type/types/undefined.d.mts +11 -0
- package/node_modules/typebox/build/type/types/undefined.mjs +17 -0
- package/node_modules/typebox/build/type/types/union.d.mts +15 -0
- package/node_modules/typebox/build/type/types/union.mjs +24 -0
- package/node_modules/typebox/build/type/types/unknown.d.mts +10 -0
- package/node_modules/typebox/build/type/types/unknown.mjs +17 -0
- package/node_modules/typebox/build/type/types/unsafe.d.mts +10 -0
- package/node_modules/typebox/build/type/types/unsafe.mjs +20 -0
- package/node_modules/typebox/build/type/types/void.d.mts +11 -0
- package/node_modules/typebox/build/type/types/void.mjs +17 -0
- package/node_modules/typebox/build/typebox.d.mts +74 -0
- package/node_modules/typebox/build/typebox.mjs +90 -0
- package/node_modules/typebox/build/value/assert/assert.d.mts +14 -0
- package/node_modules/typebox/build/value/assert/assert.mjs +28 -0
- package/node_modules/typebox/build/value/assert/index.d.mts +1 -0
- package/node_modules/typebox/build/value/assert/index.mjs +1 -0
- package/node_modules/typebox/build/value/check/check.d.mts +5 -0
- package/node_modules/typebox/build/value/check/check.mjs +11 -0
- package/node_modules/typebox/build/value/check/index.d.mts +1 -0
- package/node_modules/typebox/build/value/check/index.mjs +1 -0
- package/node_modules/typebox/build/value/clean/additional.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/additional.mjs +6 -0
- package/node_modules/typebox/build/value/clean/clean.d.mts +15 -0
- package/node_modules/typebox/build/value/clean/clean.mjs +15 -0
- package/node_modules/typebox/build/value/clean/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_array.mjs +8 -0
- package/node_modules/typebox/build/value/clean/from_base.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_base.mjs +4 -0
- package/node_modules/typebox/build/value/clean/from_cyclic.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_cyclic.mjs +6 -0
- package/node_modules/typebox/build/value/clean/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_intersect.mjs +26 -0
- package/node_modules/typebox/build/value/clean/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_object.mjs +31 -0
- package/node_modules/typebox/build/value/clean/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_record.mjs +32 -0
- package/node_modules/typebox/build/value/clean/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_ref.mjs +8 -0
- package/node_modules/typebox/build/value/clean/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_tuple.mjs +14 -0
- package/node_modules/typebox/build/value/clean/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_type.mjs +23 -0
- package/node_modules/typebox/build/value/clean/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/clean/from_union.mjs +13 -0
- package/node_modules/typebox/build/value/clean/index.d.mts +1 -0
- package/node_modules/typebox/build/value/clean/index.mjs +1 -0
- package/node_modules/typebox/build/value/clone/clone.d.mts +5 -0
- package/node_modules/typebox/build/value/clone/clone.mjs +97 -0
- package/node_modules/typebox/build/value/clone/index.d.mts +1 -0
- package/node_modules/typebox/build/value/clone/index.mjs +1 -0
- package/node_modules/typebox/build/value/codec/callback.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/callback.mjs +25 -0
- package/node_modules/typebox/build/value/codec/decode.d.mts +12 -0
- package/node_modules/typebox/build/value/codec/decode.mjs +50 -0
- package/node_modules/typebox/build/value/codec/encode.d.mts +12 -0
- package/node_modules/typebox/build/value/codec/encode.mjs +50 -0
- package/node_modules/typebox/build/value/codec/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_array.mjs +38 -0
- package/node_modules/typebox/build/value/codec/from_cyclic.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_cyclic.mjs +8 -0
- package/node_modules/typebox/build/value/codec/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_intersect.mjs +58 -0
- package/node_modules/typebox/build/value/codec/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_object.mjs +45 -0
- package/node_modules/typebox/build/value/codec/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_record.mjs +44 -0
- package/node_modules/typebox/build/value/codec/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_ref.mjs +31 -0
- package/node_modules/typebox/build/value/codec/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_tuple.mjs +35 -0
- package/node_modules/typebox/build/value/codec/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_type.mjs +22 -0
- package/node_modules/typebox/build/value/codec/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/codec/from_union.mjs +40 -0
- package/node_modules/typebox/build/value/codec/has.d.mts +5 -0
- package/node_modules/typebox/build/value/codec/has.mjs +93 -0
- package/node_modules/typebox/build/value/codec/index.d.mts +3 -0
- package/node_modules/typebox/build/value/codec/index.mjs +3 -0
- package/node_modules/typebox/build/value/convert/convert.d.mts +13 -0
- package/node_modules/typebox/build/value/convert/convert.mjs +15 -0
- package/node_modules/typebox/build/value/convert/from_additional.d.mts +6 -0
- package/node_modules/typebox/build/value/convert/from_additional.mjs +18 -0
- package/node_modules/typebox/build/value/convert/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_array.mjs +7 -0
- package/node_modules/typebox/build/value/convert/from_base.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_base.mjs +4 -0
- package/node_modules/typebox/build/value/convert/from_bigint.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_bigint.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_boolean.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_boolean.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_cyclic.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_cyclic.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_enum.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_enum.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_integer.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_integer.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/value/convert/from_literal.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_literal.mjs +44 -0
- package/node_modules/typebox/build/value/convert/from_null.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_null.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_number.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_number.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_object.mjs +28 -0
- package/node_modules/typebox/build/value/convert/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_record.mjs +23 -0
- package/node_modules/typebox/build/value/convert/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_ref.mjs +8 -0
- package/node_modules/typebox/build/value/convert/from_string.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_string.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_template_literal.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_template_literal.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_tuple.mjs +11 -0
- package/node_modules/typebox/build/value/convert/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_type.mjs +45 -0
- package/node_modules/typebox/build/value/convert/from_undefined.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_undefined.mjs +6 -0
- package/node_modules/typebox/build/value/convert/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_union.mjs +13 -0
- package/node_modules/typebox/build/value/convert/from_void.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/from_void.mjs +6 -0
- package/node_modules/typebox/build/value/convert/index.d.mts +1 -0
- package/node_modules/typebox/build/value/convert/index.mjs +1 -0
- package/node_modules/typebox/build/value/convert/try/index.d.mts +1 -0
- package/node_modules/typebox/build/value/convert/try/index.mjs +1 -0
- package/node_modules/typebox/build/value/convert/try/try.d.mts +8 -0
- package/node_modules/typebox/build/value/convert/try/try.mjs +8 -0
- package/node_modules/typebox/build/value/convert/try/try_array.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_array.mjs +6 -0
- package/node_modules/typebox/build/value/convert/try/try_bigint.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_bigint.mjs +45 -0
- package/node_modules/typebox/build/value/convert/try/try_boolean.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_boolean.mjs +41 -0
- package/node_modules/typebox/build/value/convert/try/try_null.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_null.mjs +44 -0
- package/node_modules/typebox/build/value/convert/try/try_number.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_number.mjs +44 -0
- package/node_modules/typebox/build/value/convert/try/try_result.d.mts +8 -0
- package/node_modules/typebox/build/value/convert/try/try_result.mjs +17 -0
- package/node_modules/typebox/build/value/convert/try/try_string.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_string.mjs +12 -0
- package/node_modules/typebox/build/value/convert/try/try_undefined.d.mts +2 -0
- package/node_modules/typebox/build/value/convert/try/try_undefined.mjs +44 -0
- package/node_modules/typebox/build/value/create/create.d.mts +5 -0
- package/node_modules/typebox/build/value/create/create.mjs +11 -0
- package/node_modules/typebox/build/value/create/error.d.mts +5 -0
- package/node_modules/typebox/build/value/create/error.mjs +7 -0
- package/node_modules/typebox/build/value/create/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_array.mjs +10 -0
- package/node_modules/typebox/build/value/create/from_async_iterator.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_async_iterator.mjs +5 -0
- package/node_modules/typebox/build/value/create/from_base.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_base.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_bigint.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_bigint.mjs +7 -0
- package/node_modules/typebox/build/value/create/from_boolean.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_boolean.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_constructor.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_constructor.mjs +10 -0
- package/node_modules/typebox/build/value/create/from_cyclic.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_cyclic.mjs +6 -0
- package/node_modules/typebox/build/value/create/from_default.d.mts +3 -0
- package/node_modules/typebox/build/value/create/from_default.mjs +10 -0
- package/node_modules/typebox/build/value/create/from_enum.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_enum.mjs +6 -0
- package/node_modules/typebox/build/value/create/from_function.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_function.mjs +6 -0
- package/node_modules/typebox/build/value/create/from_integer.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_integer.mjs +8 -0
- package/node_modules/typebox/build/value/create/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/value/create/from_iterator.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_iterator.mjs +5 -0
- package/node_modules/typebox/build/value/create/from_literal.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_literal.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_never.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_never.mjs +5 -0
- package/node_modules/typebox/build/value/create/from_null.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_null.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_number.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_number.mjs +8 -0
- package/node_modules/typebox/build/value/create/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_object.mjs +9 -0
- package/node_modules/typebox/build/value/create/from_promise.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_promise.mjs +5 -0
- package/node_modules/typebox/build/value/create/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_record.mjs +8 -0
- package/node_modules/typebox/build/value/create/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_ref.mjs +9 -0
- package/node_modules/typebox/build/value/create/from_string.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_string.mjs +9 -0
- package/node_modules/typebox/build/value/create/from_symbol.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_symbol.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_template_literal.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_template_literal.mjs +11 -0
- package/node_modules/typebox/build/value/create/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_tuple.mjs +5 -0
- package/node_modules/typebox/build/value/create/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_type.mjs +69 -0
- package/node_modules/typebox/build/value/create/from_undefined.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_undefined.mjs +4 -0
- package/node_modules/typebox/build/value/create/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_union.mjs +9 -0
- package/node_modules/typebox/build/value/create/from_void.d.mts +2 -0
- package/node_modules/typebox/build/value/create/from_void.mjs +4 -0
- package/node_modules/typebox/build/value/create/index.d.mts +2 -0
- package/node_modules/typebox/build/value/create/index.mjs +2 -0
- package/node_modules/typebox/build/value/default/default.d.mts +13 -0
- package/node_modules/typebox/build/value/default/default.mjs +15 -0
- package/node_modules/typebox/build/value/default/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_array.mjs +12 -0
- package/node_modules/typebox/build/value/default/from_base.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_base.mjs +5 -0
- package/node_modules/typebox/build/value/default/from_cyclic.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_cyclic.mjs +7 -0
- package/node_modules/typebox/build/value/default/from_default.d.mts +3 -0
- package/node_modules/typebox/build/value/default/from_default.mjs +13 -0
- package/node_modules/typebox/build/value/default/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_intersect.mjs +9 -0
- package/node_modules/typebox/build/value/default/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_object.mjs +32 -0
- package/node_modules/typebox/build/value/default/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_record.mjs +26 -0
- package/node_modules/typebox/build/value/default/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_ref.mjs +9 -0
- package/node_modules/typebox/build/value/default/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_tuple.mjs +14 -0
- package/node_modules/typebox/build/value/default/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_type.mjs +27 -0
- package/node_modules/typebox/build/value/default/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/default/from_union.mjs +14 -0
- package/node_modules/typebox/build/value/default/index.d.mts +1 -0
- package/node_modules/typebox/build/value/default/index.mjs +1 -0
- package/node_modules/typebox/build/value/delta/diff.d.mts +10 -0
- package/node_modules/typebox/build/value/delta/diff.mjs +135 -0
- package/node_modules/typebox/build/value/delta/edit.d.mts +24 -0
- package/node_modules/typebox/build/value/delta/edit.mjs +17 -0
- package/node_modules/typebox/build/value/delta/index.d.mts +3 -0
- package/node_modules/typebox/build/value/delta/index.mjs +3 -0
- package/node_modules/typebox/build/value/delta/patch.d.mts +8 -0
- package/node_modules/typebox/build/value/delta/patch.mjs +42 -0
- package/node_modules/typebox/build/value/equal/equal.d.mts +2 -0
- package/node_modules/typebox/build/value/equal/equal.mjs +6 -0
- package/node_modules/typebox/build/value/equal/index.d.mts +1 -0
- package/node_modules/typebox/build/value/equal/index.mjs +1 -0
- package/node_modules/typebox/build/value/errors/errors.d.mts +16 -0
- package/node_modules/typebox/build/value/errors/errors.mjs +17 -0
- package/node_modules/typebox/build/value/errors/index.d.mts +1 -0
- package/node_modules/typebox/build/value/errors/index.mjs +1 -0
- package/node_modules/typebox/build/value/hash/hash.d.mts +6 -0
- package/node_modules/typebox/build/value/hash/hash.mjs +10 -0
- package/node_modules/typebox/build/value/hash/index.d.mts +1 -0
- package/node_modules/typebox/build/value/hash/index.mjs +1 -0
- package/node_modules/typebox/build/value/index.d.mts +21 -0
- package/node_modules/typebox/build/value/index.mjs +30 -0
- package/node_modules/typebox/build/value/mutate/error.d.mts +3 -0
- package/node_modules/typebox/build/value/mutate/error.mjs +6 -0
- package/node_modules/typebox/build/value/mutate/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/mutate/from_array.mjs +16 -0
- package/node_modules/typebox/build/value/mutate/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/mutate/from_object.mjs +40 -0
- package/node_modules/typebox/build/value/mutate/from_unknown.d.mts +2 -0
- package/node_modules/typebox/build/value/mutate/from_unknown.mjs +7 -0
- package/node_modules/typebox/build/value/mutate/from_value.d.mts +2 -0
- package/node_modules/typebox/build/value/mutate/from_value.mjs +12 -0
- package/node_modules/typebox/build/value/mutate/index.d.mts +1 -0
- package/node_modules/typebox/build/value/mutate/index.mjs +1 -0
- package/node_modules/typebox/build/value/mutate/mutate.d.mts +11 -0
- package/node_modules/typebox/build/value/mutate/mutate.mjs +41 -0
- package/node_modules/typebox/build/value/parse/index.d.mts +1 -0
- package/node_modules/typebox/build/value/parse/index.mjs +1 -0
- package/node_modules/typebox/build/value/parse/parse.d.mts +11 -0
- package/node_modules/typebox/build/value/parse/parse.mjs +47 -0
- package/node_modules/typebox/build/value/pipeline/index.d.mts +1 -0
- package/node_modules/typebox/build/value/pipeline/index.mjs +1 -0
- package/node_modules/typebox/build/value/pipeline/pipeline.d.mts +10 -0
- package/node_modules/typebox/build/value/pipeline/pipeline.mjs +15 -0
- package/node_modules/typebox/build/value/pointer/index.d.mts +1 -0
- package/node_modules/typebox/build/value/pointer/index.mjs +1 -0
- package/node_modules/typebox/build/value/repair/error.d.mts +7 -0
- package/node_modules/typebox/build/value/repair/error.mjs +8 -0
- package/node_modules/typebox/build/value/repair/from_array.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_array.mjs +39 -0
- package/node_modules/typebox/build/value/repair/from_base.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_base.mjs +8 -0
- package/node_modules/typebox/build/value/repair/from_enum.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_enum.mjs +6 -0
- package/node_modules/typebox/build/value/repair/from_intersect.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_intersect.mjs +8 -0
- package/node_modules/typebox/build/value/repair/from_object.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_object.mjs +33 -0
- package/node_modules/typebox/build/value/repair/from_record.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_record.mjs +33 -0
- package/node_modules/typebox/build/value/repair/from_ref.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_ref.mjs +9 -0
- package/node_modules/typebox/build/value/repair/from_template_literal.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_template_literal.mjs +7 -0
- package/node_modules/typebox/build/value/repair/from_tuple.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_tuple.mjs +12 -0
- package/node_modules/typebox/build/value/repair/from_type.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_type.mjs +86 -0
- package/node_modules/typebox/build/value/repair/from_union.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_union.mjs +24 -0
- package/node_modules/typebox/build/value/repair/from_unknown.d.mts +2 -0
- package/node_modules/typebox/build/value/repair/from_unknown.mjs +12 -0
- package/node_modules/typebox/build/value/repair/index.d.mts +1 -0
- package/node_modules/typebox/build/value/repair/index.mjs +1 -0
- package/node_modules/typebox/build/value/repair/repair.d.mts +17 -0
- package/node_modules/typebox/build/value/repair/repair.mjs +20 -0
- package/node_modules/typebox/build/value/shared/index.d.mts +3 -0
- package/node_modules/typebox/build/value/shared/index.mjs +4 -0
- package/node_modules/typebox/build/value/shared/optional_undefined.d.mts +2 -0
- package/node_modules/typebox/build/value/shared/optional_undefined.mjs +15 -0
- package/node_modules/typebox/build/value/shared/union_priority_sort.d.mts +3 -0
- package/node_modules/typebox/build/value/shared/union_priority_sort.mjs +36 -0
- package/node_modules/typebox/build/value/shared/union_score_select.d.mts +3 -0
- package/node_modules/typebox/build/value/shared/union_score_select.mjs +51 -0
- package/node_modules/typebox/build/value/value.d.mts +16 -0
- package/node_modules/typebox/build/value/value.mjs +16 -0
- package/node_modules/typebox/license +23 -0
- package/node_modules/typebox/package.json +87 -0
- package/node_modules/typebox/readme.md +370 -0
- package/node_modules/uhyphen/LICENSE +15 -0
- package/node_modules/uhyphen/README.md +13 -0
- package/node_modules/uhyphen/cjs/index.js +3 -0
- package/node_modules/uhyphen/cjs/package.json +1 -0
- package/node_modules/uhyphen/es.js +1 -0
- package/node_modules/uhyphen/esm/index.js +2 -0
- package/node_modules/uhyphen/index.js +14 -0
- package/node_modules/uhyphen/min.js +1 -0
- package/node_modules/uhyphen/package.json +52 -0
- package/node_modules/unpdf/LICENSE +21 -0
- package/node_modules/unpdf/README.md +365 -0
- package/node_modules/unpdf/dist/index.cjs +429 -0
- package/node_modules/unpdf/dist/index.d.cts +182 -0
- package/node_modules/unpdf/dist/index.d.mts +182 -0
- package/node_modules/unpdf/dist/index.d.ts +182 -0
- package/node_modules/unpdf/dist/index.mjs +416 -0
- package/node_modules/unpdf/dist/pdfjs.d.mts +1 -0
- package/node_modules/unpdf/dist/pdfjs.d.ts +1 -0
- package/node_modules/unpdf/dist/pdfjs.mjs +107 -0
- package/node_modules/unpdf/dist/types/src/display/annotation_layer.d.ts +274 -0
- package/node_modules/unpdf/dist/types/src/display/annotation_storage.d.ts +94 -0
- package/node_modules/unpdf/dist/types/src/display/api.d.ts +1619 -0
- package/node_modules/unpdf/dist/types/src/display/api_utils.d.ts +13 -0
- package/node_modules/unpdf/dist/types/src/display/binary_data_factory.d.ts +26 -0
- package/node_modules/unpdf/dist/types/src/display/canvas.d.ts +210 -0
- package/node_modules/unpdf/dist/types/src/display/canvas_dependency_tracker.d.ts +216 -0
- package/node_modules/unpdf/dist/types/src/display/canvas_factory.d.ts +29 -0
- package/node_modules/unpdf/dist/types/src/display/content_disposition.d.ts +7 -0
- package/node_modules/unpdf/dist/types/src/display/display_utils.d.ts +281 -0
- package/node_modules/unpdf/dist/types/src/display/draw_layer.d.ts +22 -0
- package/node_modules/unpdf/dist/types/src/display/editor/alt_text.d.ts +34 -0
- package/node_modules/unpdf/dist/types/src/display/editor/annotation_editor_layer.d.ts +227 -0
- package/node_modules/unpdf/dist/types/src/display/editor/color_picker.d.ts +39 -0
- package/node_modules/unpdf/dist/types/src/display/editor/comment.d.ts +59 -0
- package/node_modules/unpdf/dist/types/src/display/editor/draw.d.ts +117 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/contour.d.ts +3 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/freedraw.d.ts +32 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/highlight.d.ts +37 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/inkdraw.d.ts +129 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/outline.d.ts +19 -0
- package/node_modules/unpdf/dist/types/src/display/editor/drawers/signaturedraw.d.ts +79 -0
- package/node_modules/unpdf/dist/types/src/display/editor/editor.d.ts +578 -0
- package/node_modules/unpdf/dist/types/src/display/editor/freetext.d.ts +63 -0
- package/node_modules/unpdf/dist/types/src/display/editor/highlight.d.ts +76 -0
- package/node_modules/unpdf/dist/types/src/display/editor/ink.d.ts +42 -0
- package/node_modules/unpdf/dist/types/src/display/editor/signature.d.ts +77 -0
- package/node_modules/unpdf/dist/types/src/display/editor/stamp.d.ts +49 -0
- package/node_modules/unpdf/dist/types/src/display/editor/toolbar.d.ts +26 -0
- package/node_modules/unpdf/dist/types/src/display/editor/tools.d.ts +484 -0
- package/node_modules/unpdf/dist/types/src/display/fetch_stream.d.ts +7 -0
- package/node_modules/unpdf/dist/types/src/display/filter_factory.d.ts +29 -0
- package/node_modules/unpdf/dist/types/src/display/font_loader.d.ts +66 -0
- package/node_modules/unpdf/dist/types/src/display/metadata.d.ts +10 -0
- package/node_modules/unpdf/dist/types/src/display/network.d.ts +20 -0
- package/node_modules/unpdf/dist/types/src/display/network_stream.d.ts +2 -0
- package/node_modules/unpdf/dist/types/src/display/network_utils.d.ts +15 -0
- package/node_modules/unpdf/dist/types/src/display/node_stream.d.ts +4 -0
- package/node_modules/unpdf/dist/types/src/display/node_utils.d.ts +18 -0
- package/node_modules/unpdf/dist/types/src/display/obj_bin_transform_display.d.ts +67 -0
- package/node_modules/unpdf/dist/types/src/display/optional_content_config.d.ts +18 -0
- package/node_modules/unpdf/dist/types/src/display/pages_mapper.d.ts +72 -0
- package/node_modules/unpdf/dist/types/src/display/pattern_helper.d.ts +80 -0
- package/node_modules/unpdf/dist/types/src/display/pdf_objects.d.ts +40 -0
- package/node_modules/unpdf/dist/types/src/display/svg_factory.d.ts +14 -0
- package/node_modules/unpdf/dist/types/src/display/text_layer.d.ts +91 -0
- package/node_modules/unpdf/dist/types/src/display/text_layer_images.d.ts +10 -0
- package/node_modules/unpdf/dist/types/src/display/touch_manager.d.ts +18 -0
- package/node_modules/unpdf/dist/types/src/display/transport_stream.d.ts +11 -0
- package/node_modules/unpdf/dist/types/src/display/webgpu_mesh.d.ts +3 -0
- package/node_modules/unpdf/dist/types/src/display/worker_options.d.ts +25 -0
- package/node_modules/unpdf/dist/types/src/display/xfa_layer.d.ts +47 -0
- package/node_modules/unpdf/dist/types/src/display/xfa_text.d.ts +21 -0
- package/node_modules/unpdf/dist/types/src/pdf.d.ts +67 -0
- package/node_modules/unpdf/dist/types/src/shared/base_pdf_stream.d.ts +121 -0
- package/node_modules/unpdf/dist/types/src/shared/image_utils.d.ts +17 -0
- package/node_modules/unpdf/dist/types/src/shared/message_handler.d.ts +48 -0
- package/node_modules/unpdf/dist/types/src/shared/murmurhash3.d.ts +7 -0
- package/node_modules/unpdf/dist/types/src/shared/obj_bin_transform_utils.d.ts +26 -0
- package/node_modules/unpdf/dist/types/src/shared/scripting_utils.d.ts +18 -0
- package/node_modules/unpdf/dist/types/src/shared/util.d.ts +424 -0
- package/node_modules/unpdf/dist/types/web/annotation_editor_layer_builder.d.ts +64 -0
- package/node_modules/unpdf/dist/types/web/annotation_layer_builder.d.ts +108 -0
- package/node_modules/unpdf/dist/types/web/app_options.d.ts +16 -0
- package/node_modules/unpdf/dist/types/web/autolinker.d.ts +29 -0
- package/node_modules/unpdf/dist/types/web/base_download_manager.d.ts +24 -0
- package/node_modules/unpdf/dist/types/web/base_pdf_page_view.d.ts +28 -0
- package/node_modules/unpdf/dist/types/web/comment_manager.d.ts +20 -0
- package/node_modules/unpdf/dist/types/web/download_manager.d.ts +4 -0
- package/node_modules/unpdf/dist/types/web/draw_layer_builder.d.ts +22 -0
- package/node_modules/unpdf/dist/types/web/event_utils.d.ts +77 -0
- package/node_modules/unpdf/dist/types/web/generic_scripting.d.ts +8 -0
- package/node_modules/unpdf/dist/types/web/genericl10n.d.ts +18 -0
- package/node_modules/unpdf/dist/types/web/l10n.d.ts +31 -0
- package/node_modules/unpdf/dist/types/web/menu.d.ts +11 -0
- package/node_modules/unpdf/dist/types/web/pdf_find_controller.d.ts +132 -0
- package/node_modules/unpdf/dist/types/web/pdf_find_utils.d.ts +16 -0
- package/node_modules/unpdf/dist/types/web/pdf_history.d.ts +116 -0
- package/node_modules/unpdf/dist/types/web/pdf_link_service.d.ts +142 -0
- package/node_modules/unpdf/dist/types/web/pdf_page_detail_view.d.ts +27 -0
- package/node_modules/unpdf/dist/types/web/pdf_page_view.d.ts +249 -0
- package/node_modules/unpdf/dist/types/web/pdf_rendering_queue.d.ts +50 -0
- package/node_modules/unpdf/dist/types/web/pdf_scripting_manager.component.d.ts +5 -0
- package/node_modules/unpdf/dist/types/web/pdf_scripting_manager.d.ts +57 -0
- package/node_modules/unpdf/dist/types/web/pdf_single_page_viewer.d.ts +7 -0
- package/node_modules/unpdf/dist/types/web/pdf_thumbnail_view.d.ts +108 -0
- package/node_modules/unpdf/dist/types/web/pdf_thumbnail_viewer.d.ts +161 -0
- package/node_modules/unpdf/dist/types/web/pdf_viewer.component.d.ts +23 -0
- package/node_modules/unpdf/dist/types/web/pdf_viewer.d.ts +619 -0
- package/node_modules/unpdf/dist/types/web/renderable_view.d.ts +33 -0
- package/node_modules/unpdf/dist/types/web/sidebar.d.ts +65 -0
- package/node_modules/unpdf/dist/types/web/struct_tree_layer_builder.d.ts +25 -0
- package/node_modules/unpdf/dist/types/web/text_accessibility.d.ts +44 -0
- package/node_modules/unpdf/dist/types/web/text_highlighter.d.ts +63 -0
- package/node_modules/unpdf/dist/types/web/text_layer_builder.d.ts +70 -0
- package/node_modules/unpdf/dist/types/web/ui_utils.d.ts +265 -0
- package/node_modules/unpdf/dist/types/web/xfa_layer_builder.d.ts +50 -0
- package/node_modules/unpdf/package.json +97 -0
- package/node_modules/yocto-queue/index.d.ts +75 -0
- package/node_modules/yocto-queue/index.js +90 -0
- package/node_modules/yocto-queue/license +9 -0
- package/node_modules/yocto-queue/package.json +48 -0
- package/node_modules/yocto-queue/readme.md +80 -0
- package/node_modules/zod/.DS_Store +0 -0
- package/node_modules/zod/LICENSE +21 -0
- package/node_modules/zod/README.md +208 -0
- package/node_modules/zod/index.cjs +33 -0
- package/node_modules/zod/index.d.cts +4 -0
- package/node_modules/zod/index.d.ts +4 -0
- package/node_modules/zod/index.js +4 -0
- package/node_modules/zod/package.json +118 -0
- package/node_modules/zod/src/index.ts +4 -0
- package/node_modules/zod/src/v3/ZodError.ts +330 -0
- package/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
- package/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
- package/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
- package/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
- package/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
- package/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
- package/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
- package/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
- package/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
- package/node_modules/zod/src/v3/errors.ts +13 -0
- package/node_modules/zod/src/v3/external.ts +6 -0
- package/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
- package/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
- package/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
- package/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
- package/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
- package/node_modules/zod/src/v3/helpers/util.ts +224 -0
- package/node_modules/zod/src/v3/index.ts +4 -0
- package/node_modules/zod/src/v3/locales/en.ts +124 -0
- package/node_modules/zod/src/v3/standard-schema.ts +113 -0
- package/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
- package/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
- package/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
- package/node_modules/zod/src/v3/tests/array.test.ts +71 -0
- package/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
- package/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
- package/node_modules/zod/src/v3/tests/base.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
- package/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
- package/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
- package/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
- package/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
- package/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
- package/node_modules/zod/src/v3/tests/date.test.ts +32 -0
- package/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
- package/node_modules/zod/src/v3/tests/default.test.ts +112 -0
- package/node_modules/zod/src/v3/tests/description.test.ts +33 -0
- package/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
- package/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
- package/node_modules/zod/src/v3/tests/error.test.ts +551 -0
- package/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
- package/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
- package/node_modules/zod/src/v3/tests/function.test.ts +257 -0
- package/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
- package/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
- package/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
- package/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
- package/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
- package/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
- package/node_modules/zod/src/v3/tests/map.test.ts +110 -0
- package/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
- package/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
- package/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
- package/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
- package/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
- package/node_modules/zod/src/v3/tests/number.test.ts +176 -0
- package/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/object.test.ts +434 -0
- package/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
- package/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
- package/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
- package/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
- package/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
- package/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
- package/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
- package/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
- package/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
- package/node_modules/zod/src/v3/tests/record.test.ts +171 -0
- package/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
- package/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
- package/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
- package/node_modules/zod/src/v3/tests/set.test.ts +142 -0
- package/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
- package/node_modules/zod/src/v3/tests/string.test.ts +916 -0
- package/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
- package/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
- package/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
- package/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
- package/node_modules/zod/src/v3/tests/void.test.ts +15 -0
- package/node_modules/zod/src/v3/types.ts +5136 -0
- package/node_modules/zod/src/v4/classic/checks.ts +30 -0
- package/node_modules/zod/src/v4/classic/coerce.ts +27 -0
- package/node_modules/zod/src/v4/classic/compat.ts +66 -0
- package/node_modules/zod/src/v4/classic/errors.ts +75 -0
- package/node_modules/zod/src/v4/classic/external.ts +50 -0
- package/node_modules/zod/src/v4/classic/index.ts +5 -0
- package/node_modules/zod/src/v4/classic/iso.ts +90 -0
- package/node_modules/zod/src/v4/classic/parse.ts +33 -0
- package/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
- package/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
- package/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
- package/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
- package/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
- package/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
- package/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
- package/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
- package/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
- package/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
- package/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
- package/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
- package/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
- package/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
- package/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
- package/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
- package/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
- package/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
- package/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
- package/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
- package/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
- package/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
- package/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
- package/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
- package/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
- package/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
- package/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
- package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
- package/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
- package/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
- package/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
- package/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
- package/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
- package/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
- package/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
- package/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
- package/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
- package/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
- package/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
- package/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
- package/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
- package/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
- package/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
- package/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
- package/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
- package/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
- package/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
- package/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
- package/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
- package/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
- package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
- package/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
- package/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
- package/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
- package/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
- package/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
- package/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
- package/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
- package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
- package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
- package/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
- package/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
- package/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
- package/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
- package/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
- package/node_modules/zod/src/v4/core/api.ts +1594 -0
- package/node_modules/zod/src/v4/core/checks.ts +1283 -0
- package/node_modules/zod/src/v4/core/config.ts +15 -0
- package/node_modules/zod/src/v4/core/core.ts +134 -0
- package/node_modules/zod/src/v4/core/doc.ts +44 -0
- package/node_modules/zod/src/v4/core/errors.ts +424 -0
- package/node_modules/zod/src/v4/core/function.ts +176 -0
- package/node_modules/zod/src/v4/core/index.ts +15 -0
- package/node_modules/zod/src/v4/core/json-schema.ts +143 -0
- package/node_modules/zod/src/v4/core/parse.ts +94 -0
- package/node_modules/zod/src/v4/core/regexes.ts +135 -0
- package/node_modules/zod/src/v4/core/registries.ts +96 -0
- package/node_modules/zod/src/v4/core/schemas.ts +3842 -0
- package/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
- package/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
- package/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
- package/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
- package/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
- package/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
- package/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
- package/node_modules/zod/src/v4/core/util.ts +775 -0
- package/node_modules/zod/src/v4/core/versions.ts +5 -0
- package/node_modules/zod/src/v4/core/zsf.ts +323 -0
- package/node_modules/zod/src/v4/index.ts +4 -0
- package/node_modules/zod/src/v4/locales/ar.ts +125 -0
- package/node_modules/zod/src/v4/locales/az.ts +121 -0
- package/node_modules/zod/src/v4/locales/be.ts +184 -0
- package/node_modules/zod/src/v4/locales/ca.ts +127 -0
- package/node_modules/zod/src/v4/locales/cs.ts +142 -0
- package/node_modules/zod/src/v4/locales/de.ts +124 -0
- package/node_modules/zod/src/v4/locales/en.ts +127 -0
- package/node_modules/zod/src/v4/locales/eo.ts +125 -0
- package/node_modules/zod/src/v4/locales/es.ts +125 -0
- package/node_modules/zod/src/v4/locales/fa.ts +134 -0
- package/node_modules/zod/src/v4/locales/fi.ts +131 -0
- package/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
- package/node_modules/zod/src/v4/locales/fr.ts +124 -0
- package/node_modules/zod/src/v4/locales/he.ts +125 -0
- package/node_modules/zod/src/v4/locales/hu.ts +126 -0
- package/node_modules/zod/src/v4/locales/id.ts +125 -0
- package/node_modules/zod/src/v4/locales/index.ts +39 -0
- package/node_modules/zod/src/v4/locales/it.ts +125 -0
- package/node_modules/zod/src/v4/locales/ja.ts +122 -0
- package/node_modules/zod/src/v4/locales/kh.ts +126 -0
- package/node_modules/zod/src/v4/locales/ko.ts +131 -0
- package/node_modules/zod/src/v4/locales/mk.ts +127 -0
- package/node_modules/zod/src/v4/locales/ms.ts +124 -0
- package/node_modules/zod/src/v4/locales/nl.ts +126 -0
- package/node_modules/zod/src/v4/locales/no.ts +124 -0
- package/node_modules/zod/src/v4/locales/ota.ts +125 -0
- package/node_modules/zod/src/v4/locales/pl.ts +126 -0
- package/node_modules/zod/src/v4/locales/ps.ts +133 -0
- package/node_modules/zod/src/v4/locales/pt.ts +123 -0
- package/node_modules/zod/src/v4/locales/ru.ts +184 -0
- package/node_modules/zod/src/v4/locales/sl.ts +126 -0
- package/node_modules/zod/src/v4/locales/sv.ts +127 -0
- package/node_modules/zod/src/v4/locales/ta.ts +125 -0
- package/node_modules/zod/src/v4/locales/th.ts +126 -0
- package/node_modules/zod/src/v4/locales/tr.ts +121 -0
- package/node_modules/zod/src/v4/locales/ua.ts +126 -0
- package/node_modules/zod/src/v4/locales/ur.ts +126 -0
- package/node_modules/zod/src/v4/locales/vi.ts +125 -0
- package/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
- package/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
- package/node_modules/zod/src/v4/mini/checks.ts +32 -0
- package/node_modules/zod/src/v4/mini/coerce.ts +22 -0
- package/node_modules/zod/src/v4/mini/external.ts +40 -0
- package/node_modules/zod/src/v4/mini/index.ts +3 -0
- package/node_modules/zod/src/v4/mini/iso.ts +62 -0
- package/node_modules/zod/src/v4/mini/parse.ts +1 -0
- package/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
- package/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
- package/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
- package/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
- package/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
- package/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
- package/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
- package/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
- package/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
- package/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
- package/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
- package/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
- package/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
- package/node_modules/zod/src/v4-mini/index.ts +1 -0
- package/node_modules/zod/v3/ZodError.cjs +138 -0
- package/node_modules/zod/v3/ZodError.d.cts +164 -0
- package/node_modules/zod/v3/ZodError.d.ts +164 -0
- package/node_modules/zod/v3/ZodError.js +133 -0
- package/node_modules/zod/v3/errors.cjs +17 -0
- package/node_modules/zod/v3/errors.d.cts +5 -0
- package/node_modules/zod/v3/errors.d.ts +5 -0
- package/node_modules/zod/v3/errors.js +9 -0
- package/node_modules/zod/v3/external.cjs +22 -0
- package/node_modules/zod/v3/external.d.cts +6 -0
- package/node_modules/zod/v3/external.d.ts +6 -0
- package/node_modules/zod/v3/external.js +6 -0
- package/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
- package/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
- package/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
- package/node_modules/zod/v3/helpers/enumUtil.js +1 -0
- package/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.js +6 -0
- package/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
- package/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
- package/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
- package/node_modules/zod/v3/helpers/parseUtil.js +109 -0
- package/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
- package/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
- package/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
- package/node_modules/zod/v3/helpers/partialUtil.js +1 -0
- package/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.js +1 -0
- package/node_modules/zod/v3/helpers/util.cjs +137 -0
- package/node_modules/zod/v3/helpers/util.d.cts +85 -0
- package/node_modules/zod/v3/helpers/util.d.ts +85 -0
- package/node_modules/zod/v3/helpers/util.js +133 -0
- package/node_modules/zod/v3/index.cjs +33 -0
- package/node_modules/zod/v3/index.d.cts +4 -0
- package/node_modules/zod/v3/index.d.ts +4 -0
- package/node_modules/zod/v3/index.js +4 -0
- package/node_modules/zod/v3/locales/en.cjs +111 -0
- package/node_modules/zod/v3/locales/en.d.cts +3 -0
- package/node_modules/zod/v3/locales/en.d.ts +3 -0
- package/node_modules/zod/v3/locales/en.js +109 -0
- package/node_modules/zod/v3/standard-schema.cjs +2 -0
- package/node_modules/zod/v3/standard-schema.d.cts +102 -0
- package/node_modules/zod/v3/standard-schema.d.ts +102 -0
- package/node_modules/zod/v3/standard-schema.js +1 -0
- package/node_modules/zod/v3/types.cjs +3775 -0
- package/node_modules/zod/v3/types.d.cts +1031 -0
- package/node_modules/zod/v3/types.d.ts +1031 -0
- package/node_modules/zod/v3/types.js +3693 -0
- package/node_modules/zod/v4/classic/checks.cjs +32 -0
- package/node_modules/zod/v4/classic/checks.d.cts +1 -0
- package/node_modules/zod/v4/classic/checks.d.ts +1 -0
- package/node_modules/zod/v4/classic/checks.js +1 -0
- package/node_modules/zod/v4/classic/coerce.cjs +47 -0
- package/node_modules/zod/v4/classic/coerce.d.cts +17 -0
- package/node_modules/zod/v4/classic/coerce.d.ts +17 -0
- package/node_modules/zod/v4/classic/coerce.js +17 -0
- package/node_modules/zod/v4/classic/compat.cjs +57 -0
- package/node_modules/zod/v4/classic/compat.d.cts +46 -0
- package/node_modules/zod/v4/classic/compat.d.ts +46 -0
- package/node_modules/zod/v4/classic/compat.js +27 -0
- package/node_modules/zod/v4/classic/errors.cjs +67 -0
- package/node_modules/zod/v4/classic/errors.d.cts +30 -0
- package/node_modules/zod/v4/classic/errors.d.ts +30 -0
- package/node_modules/zod/v4/classic/errors.js +41 -0
- package/node_modules/zod/v4/classic/external.cjs +70 -0
- package/node_modules/zod/v4/classic/external.d.cts +13 -0
- package/node_modules/zod/v4/classic/external.d.ts +13 -0
- package/node_modules/zod/v4/classic/external.js +18 -0
- package/node_modules/zod/v4/classic/index.cjs +33 -0
- package/node_modules/zod/v4/classic/index.d.cts +4 -0
- package/node_modules/zod/v4/classic/index.d.ts +4 -0
- package/node_modules/zod/v4/classic/index.js +4 -0
- package/node_modules/zod/v4/classic/iso.cjs +60 -0
- package/node_modules/zod/v4/classic/iso.d.cts +22 -0
- package/node_modules/zod/v4/classic/iso.d.ts +22 -0
- package/node_modules/zod/v4/classic/iso.js +30 -0
- package/node_modules/zod/v4/classic/parse.cjs +32 -0
- package/node_modules/zod/v4/classic/parse.d.cts +23 -0
- package/node_modules/zod/v4/classic/parse.d.ts +23 -0
- package/node_modules/zod/v4/classic/parse.js +6 -0
- package/node_modules/zod/v4/classic/schemas.cjs +1109 -0
- package/node_modules/zod/v4/classic/schemas.d.cts +630 -0
- package/node_modules/zod/v4/classic/schemas.d.ts +630 -0
- package/node_modules/zod/v4/classic/schemas.js +1006 -0
- package/node_modules/zod/v4/core/api.cjs +1039 -0
- package/node_modules/zod/v4/core/api.d.cts +284 -0
- package/node_modules/zod/v4/core/api.d.ts +284 -0
- package/node_modules/zod/v4/core/api.js +906 -0
- package/node_modules/zod/v4/core/checks.cjs +591 -0
- package/node_modules/zod/v4/core/checks.d.cts +278 -0
- package/node_modules/zod/v4/core/checks.d.ts +278 -0
- package/node_modules/zod/v4/core/checks.js +565 -0
- package/node_modules/zod/v4/core/core.cjs +67 -0
- package/node_modules/zod/v4/core/core.d.cts +49 -0
- package/node_modules/zod/v4/core/core.d.ts +49 -0
- package/node_modules/zod/v4/core/core.js +61 -0
- package/node_modules/zod/v4/core/doc.cjs +39 -0
- package/node_modules/zod/v4/core/doc.d.cts +14 -0
- package/node_modules/zod/v4/core/doc.d.ts +14 -0
- package/node_modules/zod/v4/core/doc.js +35 -0
- package/node_modules/zod/v4/core/errors.cjs +226 -0
- package/node_modules/zod/v4/core/errors.d.cts +208 -0
- package/node_modules/zod/v4/core/errors.d.ts +208 -0
- package/node_modules/zod/v4/core/errors.js +195 -0
- package/node_modules/zod/v4/core/function.cjs +102 -0
- package/node_modules/zod/v4/core/function.d.cts +52 -0
- package/node_modules/zod/v4/core/function.d.ts +52 -0
- package/node_modules/zod/v4/core/function.js +75 -0
- package/node_modules/zod/v4/core/index.cjs +44 -0
- package/node_modules/zod/v4/core/index.d.cts +15 -0
- package/node_modules/zod/v4/core/index.d.ts +15 -0
- package/node_modules/zod/v4/core/index.js +15 -0
- package/node_modules/zod/v4/core/json-schema.cjs +2 -0
- package/node_modules/zod/v4/core/json-schema.d.cts +87 -0
- package/node_modules/zod/v4/core/json-schema.d.ts +87 -0
- package/node_modules/zod/v4/core/json-schema.js +1 -0
- package/node_modules/zod/v4/core/parse.cjs +87 -0
- package/node_modules/zod/v4/core/parse.d.cts +25 -0
- package/node_modules/zod/v4/core/parse.d.ts +25 -0
- package/node_modules/zod/v4/core/parse.js +57 -0
- package/node_modules/zod/v4/core/regexes.cjs +103 -0
- package/node_modules/zod/v4/core/regexes.d.cts +62 -0
- package/node_modules/zod/v4/core/regexes.d.ts +62 -0
- package/node_modules/zod/v4/core/regexes.js +95 -0
- package/node_modules/zod/v4/core/registries.cjs +56 -0
- package/node_modules/zod/v4/core/registries.d.cts +35 -0
- package/node_modules/zod/v4/core/registries.d.ts +35 -0
- package/node_modules/zod/v4/core/registries.js +51 -0
- package/node_modules/zod/v4/core/schemas.cjs +1748 -0
- package/node_modules/zod/v4/core/schemas.d.cts +1041 -0
- package/node_modules/zod/v4/core/schemas.d.ts +1041 -0
- package/node_modules/zod/v4/core/schemas.js +1717 -0
- package/node_modules/zod/v4/core/standard-schema.cjs +2 -0
- package/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
- package/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
- package/node_modules/zod/v4/core/standard-schema.js +1 -0
- package/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
- package/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
- package/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
- package/node_modules/zod/v4/core/to-json-schema.js +849 -0
- package/node_modules/zod/v4/core/util.cjs +539 -0
- package/node_modules/zod/v4/core/util.d.cts +183 -0
- package/node_modules/zod/v4/core/util.d.ts +183 -0
- package/node_modules/zod/v4/core/util.js +493 -0
- package/node_modules/zod/v4/core/versions.cjs +8 -0
- package/node_modules/zod/v4/core/versions.d.cts +5 -0
- package/node_modules/zod/v4/core/versions.d.ts +5 -0
- package/node_modules/zod/v4/core/versions.js +5 -0
- package/node_modules/zod/v4/index.cjs +22 -0
- package/node_modules/zod/v4/index.d.cts +3 -0
- package/node_modules/zod/v4/index.d.ts +3 -0
- package/node_modules/zod/v4/index.js +3 -0
- package/node_modules/zod/v4/locales/ar.cjs +142 -0
- package/node_modules/zod/v4/locales/ar.d.cts +4 -0
- package/node_modules/zod/v4/locales/ar.d.ts +4 -0
- package/node_modules/zod/v4/locales/ar.js +116 -0
- package/node_modules/zod/v4/locales/az.cjs +141 -0
- package/node_modules/zod/v4/locales/az.d.cts +4 -0
- package/node_modules/zod/v4/locales/az.d.ts +4 -0
- package/node_modules/zod/v4/locales/az.js +115 -0
- package/node_modules/zod/v4/locales/be.cjs +190 -0
- package/node_modules/zod/v4/locales/be.d.cts +4 -0
- package/node_modules/zod/v4/locales/be.d.ts +4 -0
- package/node_modules/zod/v4/locales/be.js +164 -0
- package/node_modules/zod/v4/locales/ca.cjs +144 -0
- package/node_modules/zod/v4/locales/ca.d.cts +4 -0
- package/node_modules/zod/v4/locales/ca.d.ts +4 -0
- package/node_modules/zod/v4/locales/ca.js +118 -0
- package/node_modules/zod/v4/locales/cs.cjs +161 -0
- package/node_modules/zod/v4/locales/cs.d.cts +4 -0
- package/node_modules/zod/v4/locales/cs.d.ts +4 -0
- package/node_modules/zod/v4/locales/cs.js +135 -0
- package/node_modules/zod/v4/locales/de.cjs +142 -0
- package/node_modules/zod/v4/locales/de.d.cts +4 -0
- package/node_modules/zod/v4/locales/de.d.ts +4 -0
- package/node_modules/zod/v4/locales/de.js +116 -0
- package/node_modules/zod/v4/locales/en.cjs +145 -0
- package/node_modules/zod/v4/locales/en.d.cts +5 -0
- package/node_modules/zod/v4/locales/en.d.ts +5 -0
- package/node_modules/zod/v4/locales/en.js +117 -0
- package/node_modules/zod/v4/locales/eo.cjs +144 -0
- package/node_modules/zod/v4/locales/eo.d.cts +5 -0
- package/node_modules/zod/v4/locales/eo.d.ts +5 -0
- package/node_modules/zod/v4/locales/eo.js +116 -0
- package/node_modules/zod/v4/locales/es.cjs +143 -0
- package/node_modules/zod/v4/locales/es.d.cts +4 -0
- package/node_modules/zod/v4/locales/es.d.ts +4 -0
- package/node_modules/zod/v4/locales/es.js +117 -0
- package/node_modules/zod/v4/locales/fa.cjs +148 -0
- package/node_modules/zod/v4/locales/fa.d.cts +4 -0
- package/node_modules/zod/v4/locales/fa.d.ts +4 -0
- package/node_modules/zod/v4/locales/fa.js +122 -0
- package/node_modules/zod/v4/locales/fi.cjs +148 -0
- package/node_modules/zod/v4/locales/fi.d.cts +4 -0
- package/node_modules/zod/v4/locales/fi.d.ts +4 -0
- package/node_modules/zod/v4/locales/fi.js +122 -0
- package/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
- package/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
- package/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
- package/node_modules/zod/v4/locales/fr-CA.js +117 -0
- package/node_modules/zod/v4/locales/fr.cjs +142 -0
- package/node_modules/zod/v4/locales/fr.d.cts +4 -0
- package/node_modules/zod/v4/locales/fr.d.ts +4 -0
- package/node_modules/zod/v4/locales/fr.js +116 -0
- package/node_modules/zod/v4/locales/he.cjs +143 -0
- package/node_modules/zod/v4/locales/he.d.cts +4 -0
- package/node_modules/zod/v4/locales/he.d.ts +4 -0
- package/node_modules/zod/v4/locales/he.js +117 -0
- package/node_modules/zod/v4/locales/hu.cjs +143 -0
- package/node_modules/zod/v4/locales/hu.d.cts +4 -0
- package/node_modules/zod/v4/locales/hu.d.ts +4 -0
- package/node_modules/zod/v4/locales/hu.js +117 -0
- package/node_modules/zod/v4/locales/id.cjs +142 -0
- package/node_modules/zod/v4/locales/id.d.cts +4 -0
- package/node_modules/zod/v4/locales/id.d.ts +4 -0
- package/node_modules/zod/v4/locales/id.js +116 -0
- package/node_modules/zod/v4/locales/index.cjs +84 -0
- package/node_modules/zod/v4/locales/index.d.cts +39 -0
- package/node_modules/zod/v4/locales/index.d.ts +39 -0
- package/node_modules/zod/v4/locales/index.js +39 -0
- package/node_modules/zod/v4/locales/it.cjs +143 -0
- package/node_modules/zod/v4/locales/it.d.cts +4 -0
- package/node_modules/zod/v4/locales/it.d.ts +4 -0
- package/node_modules/zod/v4/locales/it.js +117 -0
- package/node_modules/zod/v4/locales/ja.cjs +141 -0
- package/node_modules/zod/v4/locales/ja.d.cts +4 -0
- package/node_modules/zod/v4/locales/ja.d.ts +4 -0
- package/node_modules/zod/v4/locales/ja.js +115 -0
- package/node_modules/zod/v4/locales/kh.cjs +143 -0
- package/node_modules/zod/v4/locales/kh.d.cts +4 -0
- package/node_modules/zod/v4/locales/kh.d.ts +4 -0
- package/node_modules/zod/v4/locales/kh.js +117 -0
- package/node_modules/zod/v4/locales/ko.cjs +147 -0
- package/node_modules/zod/v4/locales/ko.d.cts +4 -0
- package/node_modules/zod/v4/locales/ko.d.ts +4 -0
- package/node_modules/zod/v4/locales/ko.js +121 -0
- package/node_modules/zod/v4/locales/mk.cjs +144 -0
- package/node_modules/zod/v4/locales/mk.d.cts +4 -0
- package/node_modules/zod/v4/locales/mk.d.ts +4 -0
- package/node_modules/zod/v4/locales/mk.js +118 -0
- package/node_modules/zod/v4/locales/ms.cjs +142 -0
- package/node_modules/zod/v4/locales/ms.d.cts +4 -0
- package/node_modules/zod/v4/locales/ms.d.ts +4 -0
- package/node_modules/zod/v4/locales/ms.js +116 -0
- package/node_modules/zod/v4/locales/nl.cjs +143 -0
- package/node_modules/zod/v4/locales/nl.d.cts +4 -0
- package/node_modules/zod/v4/locales/nl.d.ts +4 -0
- package/node_modules/zod/v4/locales/nl.js +117 -0
- package/node_modules/zod/v4/locales/no.cjs +142 -0
- package/node_modules/zod/v4/locales/no.d.cts +4 -0
- package/node_modules/zod/v4/locales/no.d.ts +4 -0
- package/node_modules/zod/v4/locales/no.js +116 -0
- package/node_modules/zod/v4/locales/ota.cjs +143 -0
- package/node_modules/zod/v4/locales/ota.d.cts +4 -0
- package/node_modules/zod/v4/locales/ota.d.ts +4 -0
- package/node_modules/zod/v4/locales/ota.js +117 -0
- package/node_modules/zod/v4/locales/pl.cjs +143 -0
- package/node_modules/zod/v4/locales/pl.d.cts +4 -0
- package/node_modules/zod/v4/locales/pl.d.ts +4 -0
- package/node_modules/zod/v4/locales/pl.js +117 -0
- package/node_modules/zod/v4/locales/ps.cjs +148 -0
- package/node_modules/zod/v4/locales/ps.d.cts +4 -0
- package/node_modules/zod/v4/locales/ps.d.ts +4 -0
- package/node_modules/zod/v4/locales/ps.js +122 -0
- package/node_modules/zod/v4/locales/pt.cjs +142 -0
- package/node_modules/zod/v4/locales/pt.d.cts +4 -0
- package/node_modules/zod/v4/locales/pt.d.ts +4 -0
- package/node_modules/zod/v4/locales/pt.js +116 -0
- package/node_modules/zod/v4/locales/ru.cjs +190 -0
- package/node_modules/zod/v4/locales/ru.d.cts +4 -0
- package/node_modules/zod/v4/locales/ru.d.ts +4 -0
- package/node_modules/zod/v4/locales/ru.js +164 -0
- package/node_modules/zod/v4/locales/sl.cjs +143 -0
- package/node_modules/zod/v4/locales/sl.d.cts +4 -0
- package/node_modules/zod/v4/locales/sl.d.ts +4 -0
- package/node_modules/zod/v4/locales/sl.js +117 -0
- package/node_modules/zod/v4/locales/sv.cjs +144 -0
- package/node_modules/zod/v4/locales/sv.d.cts +4 -0
- package/node_modules/zod/v4/locales/sv.d.ts +4 -0
- package/node_modules/zod/v4/locales/sv.js +118 -0
- package/node_modules/zod/v4/locales/ta.cjs +143 -0
- package/node_modules/zod/v4/locales/ta.d.cts +4 -0
- package/node_modules/zod/v4/locales/ta.d.ts +4 -0
- package/node_modules/zod/v4/locales/ta.js +117 -0
- package/node_modules/zod/v4/locales/th.cjs +143 -0
- package/node_modules/zod/v4/locales/th.d.cts +4 -0
- package/node_modules/zod/v4/locales/th.d.ts +4 -0
- package/node_modules/zod/v4/locales/th.js +117 -0
- package/node_modules/zod/v4/locales/tr.cjs +143 -0
- package/node_modules/zod/v4/locales/tr.d.cts +5 -0
- package/node_modules/zod/v4/locales/tr.d.ts +5 -0
- package/node_modules/zod/v4/locales/tr.js +115 -0
- package/node_modules/zod/v4/locales/ua.cjs +143 -0
- package/node_modules/zod/v4/locales/ua.d.cts +4 -0
- package/node_modules/zod/v4/locales/ua.d.ts +4 -0
- package/node_modules/zod/v4/locales/ua.js +117 -0
- package/node_modules/zod/v4/locales/ur.cjs +143 -0
- package/node_modules/zod/v4/locales/ur.d.cts +4 -0
- package/node_modules/zod/v4/locales/ur.d.ts +4 -0
- package/node_modules/zod/v4/locales/ur.js +117 -0
- package/node_modules/zod/v4/locales/vi.cjs +142 -0
- package/node_modules/zod/v4/locales/vi.d.cts +4 -0
- package/node_modules/zod/v4/locales/vi.d.ts +4 -0
- package/node_modules/zod/v4/locales/vi.js +116 -0
- package/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
- package/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
- package/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
- package/node_modules/zod/v4/locales/zh-CN.js +116 -0
- package/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
- package/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
- package/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
- package/node_modules/zod/v4/locales/zh-TW.js +117 -0
- package/node_modules/zod/v4/mini/checks.cjs +34 -0
- package/node_modules/zod/v4/mini/checks.d.cts +1 -0
- package/node_modules/zod/v4/mini/checks.d.ts +1 -0
- package/node_modules/zod/v4/mini/checks.js +1 -0
- package/node_modules/zod/v4/mini/coerce.cjs +47 -0
- package/node_modules/zod/v4/mini/coerce.d.cts +7 -0
- package/node_modules/zod/v4/mini/coerce.d.ts +7 -0
- package/node_modules/zod/v4/mini/coerce.js +17 -0
- package/node_modules/zod/v4/mini/external.cjs +62 -0
- package/node_modules/zod/v4/mini/external.d.cts +11 -0
- package/node_modules/zod/v4/mini/external.d.ts +11 -0
- package/node_modules/zod/v4/mini/external.js +13 -0
- package/node_modules/zod/v4/mini/index.cjs +32 -0
- package/node_modules/zod/v4/mini/index.d.cts +3 -0
- package/node_modules/zod/v4/mini/index.d.ts +3 -0
- package/node_modules/zod/v4/mini/index.js +3 -0
- package/node_modules/zod/v4/mini/iso.cjs +60 -0
- package/node_modules/zod/v4/mini/iso.d.cts +22 -0
- package/node_modules/zod/v4/mini/iso.d.ts +22 -0
- package/node_modules/zod/v4/mini/iso.js +30 -0
- package/node_modules/zod/v4/mini/parse.cjs +8 -0
- package/node_modules/zod/v4/mini/parse.d.cts +1 -0
- package/node_modules/zod/v4/mini/parse.d.ts +1 -0
- package/node_modules/zod/v4/mini/parse.js +1 -0
- package/node_modules/zod/v4/mini/schemas.cjs +839 -0
- package/node_modules/zod/v4/mini/schemas.d.cts +356 -0
- package/node_modules/zod/v4/mini/schemas.d.ts +356 -0
- package/node_modules/zod/v4/mini/schemas.js +732 -0
- package/node_modules/zod/v4-mini/index.cjs +17 -0
- package/node_modules/zod/v4-mini/index.d.cts +1 -0
- package/node_modules/zod/v4-mini/index.d.ts +1 -0
- package/node_modules/zod/v4-mini/index.js +1 -0
- package/package.json +104 -0
- package/skills/execution-router/SKILL.md +535 -0
- package/skills/workflow-guide/SKILL.md +146 -0
- package/skills/workflow-guide/scaffolds/README.md +36 -0
- package/skills/workflow-guide/scaffolds/dag-required-reads/schemas/analysis-final-control.schema.json +28 -0
- package/skills/workflow-guide/scaffolds/dag-required-reads/schemas/intake-control.schema.json +23 -0
- package/skills/workflow-guide/scaffolds/dag-required-reads/schemas/report-control.schema.json +25 -0
- package/skills/workflow-guide/scaffolds/dag-required-reads/schemas/review-control.schema.json +23 -0
- package/skills/workflow-guide/scaffolds/dag-required-reads/schemas/scan-control.schema.json +29 -0
- package/skills/workflow-guide/scaffolds/dag-required-reads/spec.json +118 -0
- package/skills/workflow-guide/scaffolds/dag-required-reads/spec.json.validate.stderr +0 -0
- package/skills/workflow-guide/scaffolds/dag-required-reads/spec.json.validate.stdout +13 -0
- package/skills/workflow-guide/scaffolds/foreach-reduce/schemas/api-docs-control.schema.json +41 -0
- package/skills/workflow-guide/scaffolds/foreach-reduce/schemas/endpoint-work-items-control.schema.json +35 -0
- package/skills/workflow-guide/scaffolds/foreach-reduce/schemas/implementation-tests-control.schema.json +39 -0
- package/skills/workflow-guide/scaffolds/foreach-reduce/schemas/report-control.schema.json +39 -0
- package/skills/workflow-guide/scaffolds/foreach-reduce/schemas/verify-endpoint-control.schema.json +26 -0
- package/skills/workflow-guide/scaffolds/foreach-reduce/spec.json +132 -0
- package/skills/workflow-guide/scaffolds/matrix-dag/schemas/join-control.schema.json +65 -0
- package/skills/workflow-guide/scaffolds/matrix-dag/schemas/lens-control.schema.json +83 -0
- package/skills/workflow-guide/scaffolds/matrix-dag/schemas/release-control.schema.json +69 -0
- package/skills/workflow-guide/scaffolds/matrix-dag/schemas/report-control.schema.json +65 -0
- package/skills/workflow-guide/scaffolds/matrix-dag/schemas/scope-control.schema.json +54 -0
- package/skills/workflow-guide/scaffolds/matrix-dag/spec.json +200 -0
- package/skills/workflow-guide/scaffolds/object-tool-fallback/schemas/fetch-control.schema.json +33 -0
- package/skills/workflow-guide/scaffolds/object-tool-fallback/schemas/inspect-control.schema.json +39 -0
- package/skills/workflow-guide/scaffolds/object-tool-fallback/schemas/report-control.schema.json +44 -0
- package/skills/workflow-guide/scaffolds/object-tool-fallback/spec.json +91 -0
- package/skills/workflow-guide/scaffolds/support-partition/helpers/partition.mjs +173 -0
- package/skills/workflow-guide/scaffolds/support-partition/schemas/candidates-control.schema.json +40 -0
- package/skills/workflow-guide/scaffolds/support-partition/schemas/partition-control.schema.json +51 -0
- package/skills/workflow-guide/scaffolds/support-partition/schemas/report-control.schema.json +30 -0
- package/skills/workflow-guide/scaffolds/support-partition/schemas/verification-control.schema.json +26 -0
- package/skills/workflow-guide/scaffolds/support-partition/spec.json +113 -0
- package/src/agents.ts +432 -0
- package/src/artifact-graph-runtime.ts +963 -0
- package/src/artifact-graph-schema.ts +1852 -0
- package/src/backend.ts +32 -0
- package/src/cli.mjs +186 -0
- package/src/compiler.ts +1803 -0
- package/src/dynamic-control-ops.ts +934 -0
- package/src/dynamic-controller-calls.ts +591 -0
- package/src/dynamic-controller-errors.ts +23 -0
- package/src/dynamic-controller-policy.ts +358 -0
- package/src/dynamic-decision-loop.ts +413 -0
- package/src/dynamic-decision.ts +859 -0
- package/src/dynamic-events.ts +205 -0
- package/src/dynamic-generated-task-runtime.ts +933 -0
- package/src/dynamic-loader.ts +49 -0
- package/src/dynamic-loop-actions.ts +253 -0
- package/src/dynamic-loop-prompts.ts +137 -0
- package/src/dynamic-loop-types.ts +191 -0
- package/src/dynamic-profiles.ts +50 -0
- package/src/dynamic-runtime-bundle.ts +175 -0
- package/src/dynamic-state-index.ts +1132 -0
- package/src/dynamic-state.ts +772 -0
- package/src/engine-run-graph.ts +474 -0
- package/src/engine.ts +2814 -0
- package/src/extension.ts +1422 -0
- package/src/index.ts +82 -0
- package/src/json-schema.ts +411 -0
- package/src/loop-runtime.ts +1069 -0
- package/src/process-role.ts +53 -0
- package/src/result.ts +53 -0
- package/src/roles.ts +120 -0
- package/src/schema.ts +120 -0
- package/src/store.ts +1501 -0
- package/src/subagent-backend.ts +1627 -0
- package/src/tool-metadata.ts +286 -0
- package/src/types.ts +757 -0
- package/src/workflow-artifact-extension.ts +135 -0
- package/src/workflow-artifact-tool.ts +885 -0
- package/src/workflow-artifacts.ts +537 -0
- package/src/workflow-fetch-cache-extension.ts +380 -0
- package/src/workflow-helpers.ts +93 -0
- package/src/workflow-output-artifacts.ts +1444 -0
- package/src/workflow-runtime.ts +281 -0
- package/src/workflow-source-context-runtime.ts +169 -0
- package/src/workflow-specs.ts +283 -0
- package/src/workflow-view.ts +2048 -0
- package/src/worktree.ts +564 -0
- package/workflows/README.md +74 -0
- package/workflows/deep-research/helpers/claim-evidence-gate.mjs +335 -0
- package/workflows/deep-research/helpers/render-executive.mjs +353 -0
- package/workflows/deep-research/schemas/deep-research-executive-render-control.schema.json +65 -0
- package/workflows/deep-research/schemas/deep-research-final-control.schema.json +83 -0
- package/workflows/deep-research/schemas/deep-research-normalize-claims-control.schema.json +51 -0
- package/workflows/deep-research/schemas/deep-research-plan-control.schema.json +79 -0
- package/workflows/deep-research/schemas/deep-research-research-questions-control.schema.json +43 -0
- package/workflows/deep-research/schemas/deep-research-verify-claims-control.schema.json +35 -0
- package/workflows/deep-research/spec.json +174 -0
- package/workflows/deep-review/helpers/finding-pipeline.mjs +1166 -0
- package/workflows/deep-review/schemas/deep-review-dedup-control.schema.json +180 -0
- package/workflows/deep-review/schemas/deep-review-devil-advocate-control.schema.json +21 -0
- package/workflows/deep-review/schemas/deep-review-partition-control.schema.json +441 -0
- package/workflows/deep-review/schemas/deep-review-report-control.schema.json +176 -0
- package/workflows/deep-review/schemas/deep-review-reviewers-control.schema.json +81 -0
- package/workflows/deep-review/schemas/deep-review-triage-control.schema.json +26 -0
- package/workflows/deep-review/spec.json +159 -0
- package/workflows/impact-review/schemas/api-contract-impact-control.schema.json +42 -0
- package/workflows/impact-review/schemas/change-scope-control.schema.json +63 -0
- package/workflows/impact-review/schemas/contract-consistency-control.schema.json +41 -0
- package/workflows/impact-review/schemas/docs-release-impact-control.schema.json +42 -0
- package/workflows/impact-review/schemas/impact-synthesis-control.schema.json +84 -0
- package/workflows/impact-review/schemas/implementation-map-control.schema.json +45 -0
- package/workflows/impact-review/schemas/regression-risk-control.schema.json +42 -0
- package/workflows/impact-review/schemas/security-performance-impact-control.schema.json +42 -0
- package/workflows/impact-review/schemas/ship-readiness-control.schema.json +48 -0
- package/workflows/impact-review/schemas/state-data-impact-control.schema.json +42 -0
- package/workflows/impact-review/schemas/validation-impact-control.schema.json +55 -0
- package/workflows/impact-review/schemas/validation-map-control.schema.json +52 -0
- package/workflows/impact-review/spec.json +249 -0
- package/workflows/spec-review/helpers/spec-review-pipeline.mjs +246 -0
- package/workflows/spec-review/schemas/spec-review-candidate-findings-control.schema.json +33 -0
- package/workflows/spec-review/schemas/spec-review-extract-spec-control.schema.json +26 -0
- package/workflows/spec-review/schemas/spec-review-inspect-tests-control.schema.json +25 -0
- package/workflows/spec-review/schemas/spec-review-map-implementation-control.schema.json +25 -0
- package/workflows/spec-review/schemas/spec-review-report-control.schema.json +26 -0
- package/workflows/spec-review/schemas/spec-review-verify-findings-control.schema.json +21 -0
- package/workflows/spec-review/spec.json +141 -0
|
@@ -0,0 +1,2509 @@
|
|
|
1
|
+
const EventEmitter = require('node:events').EventEmitter;
|
|
2
|
+
const childProcess = require('node:child_process');
|
|
3
|
+
const path = require('node:path');
|
|
4
|
+
const fs = require('node:fs');
|
|
5
|
+
const process = require('node:process');
|
|
6
|
+
|
|
7
|
+
const { Argument, humanReadableArgName } = require('./argument.js');
|
|
8
|
+
const { CommanderError } = require('./error.js');
|
|
9
|
+
const { Help } = require('./help.js');
|
|
10
|
+
const { Option, DualOptions } = require('./option.js');
|
|
11
|
+
const { suggestSimilar } = require('./suggestSimilar');
|
|
12
|
+
|
|
13
|
+
class Command extends EventEmitter {
|
|
14
|
+
/**
|
|
15
|
+
* Initialize a new `Command`.
|
|
16
|
+
*
|
|
17
|
+
* @param {string} [name]
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
constructor(name) {
|
|
21
|
+
super();
|
|
22
|
+
/** @type {Command[]} */
|
|
23
|
+
this.commands = [];
|
|
24
|
+
/** @type {Option[]} */
|
|
25
|
+
this.options = [];
|
|
26
|
+
this.parent = null;
|
|
27
|
+
this._allowUnknownOption = false;
|
|
28
|
+
this._allowExcessArguments = true;
|
|
29
|
+
/** @type {Argument[]} */
|
|
30
|
+
this.registeredArguments = [];
|
|
31
|
+
this._args = this.registeredArguments; // deprecated old name
|
|
32
|
+
/** @type {string[]} */
|
|
33
|
+
this.args = []; // cli args with options removed
|
|
34
|
+
this.rawArgs = [];
|
|
35
|
+
this.processedArgs = []; // like .args but after custom processing and collecting variadic
|
|
36
|
+
this._scriptPath = null;
|
|
37
|
+
this._name = name || '';
|
|
38
|
+
this._optionValues = {};
|
|
39
|
+
this._optionValueSources = {}; // default, env, cli etc
|
|
40
|
+
this._storeOptionsAsProperties = false;
|
|
41
|
+
this._actionHandler = null;
|
|
42
|
+
this._executableHandler = false;
|
|
43
|
+
this._executableFile = null; // custom name for executable
|
|
44
|
+
this._executableDir = null; // custom search directory for subcommands
|
|
45
|
+
this._defaultCommandName = null;
|
|
46
|
+
this._exitCallback = null;
|
|
47
|
+
this._aliases = [];
|
|
48
|
+
this._combineFlagAndOptionalValue = true;
|
|
49
|
+
this._description = '';
|
|
50
|
+
this._summary = '';
|
|
51
|
+
this._argsDescription = undefined; // legacy
|
|
52
|
+
this._enablePositionalOptions = false;
|
|
53
|
+
this._passThroughOptions = false;
|
|
54
|
+
this._lifeCycleHooks = {}; // a hash of arrays
|
|
55
|
+
/** @type {(boolean | string)} */
|
|
56
|
+
this._showHelpAfterError = false;
|
|
57
|
+
this._showSuggestionAfterError = true;
|
|
58
|
+
|
|
59
|
+
// see .configureOutput() for docs
|
|
60
|
+
this._outputConfiguration = {
|
|
61
|
+
writeOut: (str) => process.stdout.write(str),
|
|
62
|
+
writeErr: (str) => process.stderr.write(str),
|
|
63
|
+
getOutHelpWidth: () =>
|
|
64
|
+
process.stdout.isTTY ? process.stdout.columns : undefined,
|
|
65
|
+
getErrHelpWidth: () =>
|
|
66
|
+
process.stderr.isTTY ? process.stderr.columns : undefined,
|
|
67
|
+
outputError: (str, write) => write(str),
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
this._hidden = false;
|
|
71
|
+
/** @type {(Option | null | undefined)} */
|
|
72
|
+
this._helpOption = undefined; // Lazy created on demand. May be null if help option is disabled.
|
|
73
|
+
this._addImplicitHelpCommand = undefined; // undecided whether true or false yet, not inherited
|
|
74
|
+
/** @type {Command} */
|
|
75
|
+
this._helpCommand = undefined; // lazy initialised, inherited
|
|
76
|
+
this._helpConfiguration = {};
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Copy settings that are useful to have in common across root command and subcommands.
|
|
81
|
+
*
|
|
82
|
+
* (Used internally when adding a command using `.command()` so subcommands inherit parent settings.)
|
|
83
|
+
*
|
|
84
|
+
* @param {Command} sourceCommand
|
|
85
|
+
* @return {Command} `this` command for chaining
|
|
86
|
+
*/
|
|
87
|
+
copyInheritedSettings(sourceCommand) {
|
|
88
|
+
this._outputConfiguration = sourceCommand._outputConfiguration;
|
|
89
|
+
this._helpOption = sourceCommand._helpOption;
|
|
90
|
+
this._helpCommand = sourceCommand._helpCommand;
|
|
91
|
+
this._helpConfiguration = sourceCommand._helpConfiguration;
|
|
92
|
+
this._exitCallback = sourceCommand._exitCallback;
|
|
93
|
+
this._storeOptionsAsProperties = sourceCommand._storeOptionsAsProperties;
|
|
94
|
+
this._combineFlagAndOptionalValue =
|
|
95
|
+
sourceCommand._combineFlagAndOptionalValue;
|
|
96
|
+
this._allowExcessArguments = sourceCommand._allowExcessArguments;
|
|
97
|
+
this._enablePositionalOptions = sourceCommand._enablePositionalOptions;
|
|
98
|
+
this._showHelpAfterError = sourceCommand._showHelpAfterError;
|
|
99
|
+
this._showSuggestionAfterError = sourceCommand._showSuggestionAfterError;
|
|
100
|
+
|
|
101
|
+
return this;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* @returns {Command[]}
|
|
106
|
+
* @private
|
|
107
|
+
*/
|
|
108
|
+
|
|
109
|
+
_getCommandAndAncestors() {
|
|
110
|
+
const result = [];
|
|
111
|
+
// eslint-disable-next-line @typescript-eslint/no-this-alias
|
|
112
|
+
for (let command = this; command; command = command.parent) {
|
|
113
|
+
result.push(command);
|
|
114
|
+
}
|
|
115
|
+
return result;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* Define a command.
|
|
120
|
+
*
|
|
121
|
+
* There are two styles of command: pay attention to where to put the description.
|
|
122
|
+
*
|
|
123
|
+
* @example
|
|
124
|
+
* // Command implemented using action handler (description is supplied separately to `.command`)
|
|
125
|
+
* program
|
|
126
|
+
* .command('clone <source> [destination]')
|
|
127
|
+
* .description('clone a repository into a newly created directory')
|
|
128
|
+
* .action((source, destination) => {
|
|
129
|
+
* console.log('clone command called');
|
|
130
|
+
* });
|
|
131
|
+
*
|
|
132
|
+
* // Command implemented using separate executable file (description is second parameter to `.command`)
|
|
133
|
+
* program
|
|
134
|
+
* .command('start <service>', 'start named service')
|
|
135
|
+
* .command('stop [service]', 'stop named service, or all if no name supplied');
|
|
136
|
+
*
|
|
137
|
+
* @param {string} nameAndArgs - command name and arguments, args are `<required>` or `[optional]` and last may also be `variadic...`
|
|
138
|
+
* @param {(object | string)} [actionOptsOrExecDesc] - configuration options (for action), or description (for executable)
|
|
139
|
+
* @param {object} [execOpts] - configuration options (for executable)
|
|
140
|
+
* @return {Command} returns new command for action handler, or `this` for executable command
|
|
141
|
+
*/
|
|
142
|
+
|
|
143
|
+
command(nameAndArgs, actionOptsOrExecDesc, execOpts) {
|
|
144
|
+
let desc = actionOptsOrExecDesc;
|
|
145
|
+
let opts = execOpts;
|
|
146
|
+
if (typeof desc === 'object' && desc !== null) {
|
|
147
|
+
opts = desc;
|
|
148
|
+
desc = null;
|
|
149
|
+
}
|
|
150
|
+
opts = opts || {};
|
|
151
|
+
const [, name, args] = nameAndArgs.match(/([^ ]+) *(.*)/);
|
|
152
|
+
|
|
153
|
+
const cmd = this.createCommand(name);
|
|
154
|
+
if (desc) {
|
|
155
|
+
cmd.description(desc);
|
|
156
|
+
cmd._executableHandler = true;
|
|
157
|
+
}
|
|
158
|
+
if (opts.isDefault) this._defaultCommandName = cmd._name;
|
|
159
|
+
cmd._hidden = !!(opts.noHelp || opts.hidden); // noHelp is deprecated old name for hidden
|
|
160
|
+
cmd._executableFile = opts.executableFile || null; // Custom name for executable file, set missing to null to match constructor
|
|
161
|
+
if (args) cmd.arguments(args);
|
|
162
|
+
this._registerCommand(cmd);
|
|
163
|
+
cmd.parent = this;
|
|
164
|
+
cmd.copyInheritedSettings(this);
|
|
165
|
+
|
|
166
|
+
if (desc) return this;
|
|
167
|
+
return cmd;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* Factory routine to create a new unattached command.
|
|
172
|
+
*
|
|
173
|
+
* See .command() for creating an attached subcommand, which uses this routine to
|
|
174
|
+
* create the command. You can override createCommand to customise subcommands.
|
|
175
|
+
*
|
|
176
|
+
* @param {string} [name]
|
|
177
|
+
* @return {Command} new command
|
|
178
|
+
*/
|
|
179
|
+
|
|
180
|
+
createCommand(name) {
|
|
181
|
+
return new Command(name);
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
/**
|
|
185
|
+
* You can customise the help with a subclass of Help by overriding createHelp,
|
|
186
|
+
* or by overriding Help properties using configureHelp().
|
|
187
|
+
*
|
|
188
|
+
* @return {Help}
|
|
189
|
+
*/
|
|
190
|
+
|
|
191
|
+
createHelp() {
|
|
192
|
+
return Object.assign(new Help(), this.configureHelp());
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
/**
|
|
196
|
+
* You can customise the help by overriding Help properties using configureHelp(),
|
|
197
|
+
* or with a subclass of Help by overriding createHelp().
|
|
198
|
+
*
|
|
199
|
+
* @param {object} [configuration] - configuration options
|
|
200
|
+
* @return {(Command | object)} `this` command for chaining, or stored configuration
|
|
201
|
+
*/
|
|
202
|
+
|
|
203
|
+
configureHelp(configuration) {
|
|
204
|
+
if (configuration === undefined) return this._helpConfiguration;
|
|
205
|
+
|
|
206
|
+
this._helpConfiguration = configuration;
|
|
207
|
+
return this;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* The default output goes to stdout and stderr. You can customise this for special
|
|
212
|
+
* applications. You can also customise the display of errors by overriding outputError.
|
|
213
|
+
*
|
|
214
|
+
* The configuration properties are all functions:
|
|
215
|
+
*
|
|
216
|
+
* // functions to change where being written, stdout and stderr
|
|
217
|
+
* writeOut(str)
|
|
218
|
+
* writeErr(str)
|
|
219
|
+
* // matching functions to specify width for wrapping help
|
|
220
|
+
* getOutHelpWidth()
|
|
221
|
+
* getErrHelpWidth()
|
|
222
|
+
* // functions based on what is being written out
|
|
223
|
+
* outputError(str, write) // used for displaying errors, and not used for displaying help
|
|
224
|
+
*
|
|
225
|
+
* @param {object} [configuration] - configuration options
|
|
226
|
+
* @return {(Command | object)} `this` command for chaining, or stored configuration
|
|
227
|
+
*/
|
|
228
|
+
|
|
229
|
+
configureOutput(configuration) {
|
|
230
|
+
if (configuration === undefined) return this._outputConfiguration;
|
|
231
|
+
|
|
232
|
+
Object.assign(this._outputConfiguration, configuration);
|
|
233
|
+
return this;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* Display the help or a custom message after an error occurs.
|
|
238
|
+
*
|
|
239
|
+
* @param {(boolean|string)} [displayHelp]
|
|
240
|
+
* @return {Command} `this` command for chaining
|
|
241
|
+
*/
|
|
242
|
+
showHelpAfterError(displayHelp = true) {
|
|
243
|
+
if (typeof displayHelp !== 'string') displayHelp = !!displayHelp;
|
|
244
|
+
this._showHelpAfterError = displayHelp;
|
|
245
|
+
return this;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* Display suggestion of similar commands for unknown commands, or options for unknown options.
|
|
250
|
+
*
|
|
251
|
+
* @param {boolean} [displaySuggestion]
|
|
252
|
+
* @return {Command} `this` command for chaining
|
|
253
|
+
*/
|
|
254
|
+
showSuggestionAfterError(displaySuggestion = true) {
|
|
255
|
+
this._showSuggestionAfterError = !!displaySuggestion;
|
|
256
|
+
return this;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
/**
|
|
260
|
+
* Add a prepared subcommand.
|
|
261
|
+
*
|
|
262
|
+
* See .command() for creating an attached subcommand which inherits settings from its parent.
|
|
263
|
+
*
|
|
264
|
+
* @param {Command} cmd - new subcommand
|
|
265
|
+
* @param {object} [opts] - configuration options
|
|
266
|
+
* @return {Command} `this` command for chaining
|
|
267
|
+
*/
|
|
268
|
+
|
|
269
|
+
addCommand(cmd, opts) {
|
|
270
|
+
if (!cmd._name) {
|
|
271
|
+
throw new Error(`Command passed to .addCommand() must have a name
|
|
272
|
+
- specify the name in Command constructor or using .name()`);
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
opts = opts || {};
|
|
276
|
+
if (opts.isDefault) this._defaultCommandName = cmd._name;
|
|
277
|
+
if (opts.noHelp || opts.hidden) cmd._hidden = true; // modifying passed command due to existing implementation
|
|
278
|
+
|
|
279
|
+
this._registerCommand(cmd);
|
|
280
|
+
cmd.parent = this;
|
|
281
|
+
cmd._checkForBrokenPassThrough();
|
|
282
|
+
|
|
283
|
+
return this;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* Factory routine to create a new unattached argument.
|
|
288
|
+
*
|
|
289
|
+
* See .argument() for creating an attached argument, which uses this routine to
|
|
290
|
+
* create the argument. You can override createArgument to return a custom argument.
|
|
291
|
+
*
|
|
292
|
+
* @param {string} name
|
|
293
|
+
* @param {string} [description]
|
|
294
|
+
* @return {Argument} new argument
|
|
295
|
+
*/
|
|
296
|
+
|
|
297
|
+
createArgument(name, description) {
|
|
298
|
+
return new Argument(name, description);
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
/**
|
|
302
|
+
* Define argument syntax for command.
|
|
303
|
+
*
|
|
304
|
+
* The default is that the argument is required, and you can explicitly
|
|
305
|
+
* indicate this with <> around the name. Put [] around the name for an optional argument.
|
|
306
|
+
*
|
|
307
|
+
* @example
|
|
308
|
+
* program.argument('<input-file>');
|
|
309
|
+
* program.argument('[output-file]');
|
|
310
|
+
*
|
|
311
|
+
* @param {string} name
|
|
312
|
+
* @param {string} [description]
|
|
313
|
+
* @param {(Function|*)} [fn] - custom argument processing function
|
|
314
|
+
* @param {*} [defaultValue]
|
|
315
|
+
* @return {Command} `this` command for chaining
|
|
316
|
+
*/
|
|
317
|
+
argument(name, description, fn, defaultValue) {
|
|
318
|
+
const argument = this.createArgument(name, description);
|
|
319
|
+
if (typeof fn === 'function') {
|
|
320
|
+
argument.default(defaultValue).argParser(fn);
|
|
321
|
+
} else {
|
|
322
|
+
argument.default(fn);
|
|
323
|
+
}
|
|
324
|
+
this.addArgument(argument);
|
|
325
|
+
return this;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
/**
|
|
329
|
+
* Define argument syntax for command, adding multiple at once (without descriptions).
|
|
330
|
+
*
|
|
331
|
+
* See also .argument().
|
|
332
|
+
*
|
|
333
|
+
* @example
|
|
334
|
+
* program.arguments('<cmd> [env]');
|
|
335
|
+
*
|
|
336
|
+
* @param {string} names
|
|
337
|
+
* @return {Command} `this` command for chaining
|
|
338
|
+
*/
|
|
339
|
+
|
|
340
|
+
arguments(names) {
|
|
341
|
+
names
|
|
342
|
+
.trim()
|
|
343
|
+
.split(/ +/)
|
|
344
|
+
.forEach((detail) => {
|
|
345
|
+
this.argument(detail);
|
|
346
|
+
});
|
|
347
|
+
return this;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
/**
|
|
351
|
+
* Define argument syntax for command, adding a prepared argument.
|
|
352
|
+
*
|
|
353
|
+
* @param {Argument} argument
|
|
354
|
+
* @return {Command} `this` command for chaining
|
|
355
|
+
*/
|
|
356
|
+
addArgument(argument) {
|
|
357
|
+
const previousArgument = this.registeredArguments.slice(-1)[0];
|
|
358
|
+
if (previousArgument && previousArgument.variadic) {
|
|
359
|
+
throw new Error(
|
|
360
|
+
`only the last argument can be variadic '${previousArgument.name()}'`,
|
|
361
|
+
);
|
|
362
|
+
}
|
|
363
|
+
if (
|
|
364
|
+
argument.required &&
|
|
365
|
+
argument.defaultValue !== undefined &&
|
|
366
|
+
argument.parseArg === undefined
|
|
367
|
+
) {
|
|
368
|
+
throw new Error(
|
|
369
|
+
`a default value for a required argument is never used: '${argument.name()}'`,
|
|
370
|
+
);
|
|
371
|
+
}
|
|
372
|
+
this.registeredArguments.push(argument);
|
|
373
|
+
return this;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* Customise or override default help command. By default a help command is automatically added if your command has subcommands.
|
|
378
|
+
*
|
|
379
|
+
* @example
|
|
380
|
+
* program.helpCommand('help [cmd]');
|
|
381
|
+
* program.helpCommand('help [cmd]', 'show help');
|
|
382
|
+
* program.helpCommand(false); // suppress default help command
|
|
383
|
+
* program.helpCommand(true); // add help command even if no subcommands
|
|
384
|
+
*
|
|
385
|
+
* @param {string|boolean} enableOrNameAndArgs - enable with custom name and/or arguments, or boolean to override whether added
|
|
386
|
+
* @param {string} [description] - custom description
|
|
387
|
+
* @return {Command} `this` command for chaining
|
|
388
|
+
*/
|
|
389
|
+
|
|
390
|
+
helpCommand(enableOrNameAndArgs, description) {
|
|
391
|
+
if (typeof enableOrNameAndArgs === 'boolean') {
|
|
392
|
+
this._addImplicitHelpCommand = enableOrNameAndArgs;
|
|
393
|
+
return this;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
enableOrNameAndArgs = enableOrNameAndArgs ?? 'help [command]';
|
|
397
|
+
const [, helpName, helpArgs] = enableOrNameAndArgs.match(/([^ ]+) *(.*)/);
|
|
398
|
+
const helpDescription = description ?? 'display help for command';
|
|
399
|
+
|
|
400
|
+
const helpCommand = this.createCommand(helpName);
|
|
401
|
+
helpCommand.helpOption(false);
|
|
402
|
+
if (helpArgs) helpCommand.arguments(helpArgs);
|
|
403
|
+
if (helpDescription) helpCommand.description(helpDescription);
|
|
404
|
+
|
|
405
|
+
this._addImplicitHelpCommand = true;
|
|
406
|
+
this._helpCommand = helpCommand;
|
|
407
|
+
|
|
408
|
+
return this;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
/**
|
|
412
|
+
* Add prepared custom help command.
|
|
413
|
+
*
|
|
414
|
+
* @param {(Command|string|boolean)} helpCommand - custom help command, or deprecated enableOrNameAndArgs as for `.helpCommand()`
|
|
415
|
+
* @param {string} [deprecatedDescription] - deprecated custom description used with custom name only
|
|
416
|
+
* @return {Command} `this` command for chaining
|
|
417
|
+
*/
|
|
418
|
+
addHelpCommand(helpCommand, deprecatedDescription) {
|
|
419
|
+
// If not passed an object, call through to helpCommand for backwards compatibility,
|
|
420
|
+
// as addHelpCommand was originally used like helpCommand is now.
|
|
421
|
+
if (typeof helpCommand !== 'object') {
|
|
422
|
+
this.helpCommand(helpCommand, deprecatedDescription);
|
|
423
|
+
return this;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
this._addImplicitHelpCommand = true;
|
|
427
|
+
this._helpCommand = helpCommand;
|
|
428
|
+
return this;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* Lazy create help command.
|
|
433
|
+
*
|
|
434
|
+
* @return {(Command|null)}
|
|
435
|
+
* @package
|
|
436
|
+
*/
|
|
437
|
+
_getHelpCommand() {
|
|
438
|
+
const hasImplicitHelpCommand =
|
|
439
|
+
this._addImplicitHelpCommand ??
|
|
440
|
+
(this.commands.length &&
|
|
441
|
+
!this._actionHandler &&
|
|
442
|
+
!this._findCommand('help'));
|
|
443
|
+
|
|
444
|
+
if (hasImplicitHelpCommand) {
|
|
445
|
+
if (this._helpCommand === undefined) {
|
|
446
|
+
this.helpCommand(undefined, undefined); // use default name and description
|
|
447
|
+
}
|
|
448
|
+
return this._helpCommand;
|
|
449
|
+
}
|
|
450
|
+
return null;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* Add hook for life cycle event.
|
|
455
|
+
*
|
|
456
|
+
* @param {string} event
|
|
457
|
+
* @param {Function} listener
|
|
458
|
+
* @return {Command} `this` command for chaining
|
|
459
|
+
*/
|
|
460
|
+
|
|
461
|
+
hook(event, listener) {
|
|
462
|
+
const allowedValues = ['preSubcommand', 'preAction', 'postAction'];
|
|
463
|
+
if (!allowedValues.includes(event)) {
|
|
464
|
+
throw new Error(`Unexpected value for event passed to hook : '${event}'.
|
|
465
|
+
Expecting one of '${allowedValues.join("', '")}'`);
|
|
466
|
+
}
|
|
467
|
+
if (this._lifeCycleHooks[event]) {
|
|
468
|
+
this._lifeCycleHooks[event].push(listener);
|
|
469
|
+
} else {
|
|
470
|
+
this._lifeCycleHooks[event] = [listener];
|
|
471
|
+
}
|
|
472
|
+
return this;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
/**
|
|
476
|
+
* Register callback to use as replacement for calling process.exit.
|
|
477
|
+
*
|
|
478
|
+
* @param {Function} [fn] optional callback which will be passed a CommanderError, defaults to throwing
|
|
479
|
+
* @return {Command} `this` command for chaining
|
|
480
|
+
*/
|
|
481
|
+
|
|
482
|
+
exitOverride(fn) {
|
|
483
|
+
if (fn) {
|
|
484
|
+
this._exitCallback = fn;
|
|
485
|
+
} else {
|
|
486
|
+
this._exitCallback = (err) => {
|
|
487
|
+
if (err.code !== 'commander.executeSubCommandAsync') {
|
|
488
|
+
throw err;
|
|
489
|
+
} else {
|
|
490
|
+
// Async callback from spawn events, not useful to throw.
|
|
491
|
+
}
|
|
492
|
+
};
|
|
493
|
+
}
|
|
494
|
+
return this;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
/**
|
|
498
|
+
* Call process.exit, and _exitCallback if defined.
|
|
499
|
+
*
|
|
500
|
+
* @param {number} exitCode exit code for using with process.exit
|
|
501
|
+
* @param {string} code an id string representing the error
|
|
502
|
+
* @param {string} message human-readable description of the error
|
|
503
|
+
* @return never
|
|
504
|
+
* @private
|
|
505
|
+
*/
|
|
506
|
+
|
|
507
|
+
_exit(exitCode, code, message) {
|
|
508
|
+
if (this._exitCallback) {
|
|
509
|
+
this._exitCallback(new CommanderError(exitCode, code, message));
|
|
510
|
+
// Expecting this line is not reached.
|
|
511
|
+
}
|
|
512
|
+
process.exit(exitCode);
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
/**
|
|
516
|
+
* Register callback `fn` for the command.
|
|
517
|
+
*
|
|
518
|
+
* @example
|
|
519
|
+
* program
|
|
520
|
+
* .command('serve')
|
|
521
|
+
* .description('start service')
|
|
522
|
+
* .action(function() {
|
|
523
|
+
* // do work here
|
|
524
|
+
* });
|
|
525
|
+
*
|
|
526
|
+
* @param {Function} fn
|
|
527
|
+
* @return {Command} `this` command for chaining
|
|
528
|
+
*/
|
|
529
|
+
|
|
530
|
+
action(fn) {
|
|
531
|
+
const listener = (args) => {
|
|
532
|
+
// The .action callback takes an extra parameter which is the command or options.
|
|
533
|
+
const expectedArgsCount = this.registeredArguments.length;
|
|
534
|
+
const actionArgs = args.slice(0, expectedArgsCount);
|
|
535
|
+
if (this._storeOptionsAsProperties) {
|
|
536
|
+
actionArgs[expectedArgsCount] = this; // backwards compatible "options"
|
|
537
|
+
} else {
|
|
538
|
+
actionArgs[expectedArgsCount] = this.opts();
|
|
539
|
+
}
|
|
540
|
+
actionArgs.push(this);
|
|
541
|
+
|
|
542
|
+
return fn.apply(this, actionArgs);
|
|
543
|
+
};
|
|
544
|
+
this._actionHandler = listener;
|
|
545
|
+
return this;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
/**
|
|
549
|
+
* Factory routine to create a new unattached option.
|
|
550
|
+
*
|
|
551
|
+
* See .option() for creating an attached option, which uses this routine to
|
|
552
|
+
* create the option. You can override createOption to return a custom option.
|
|
553
|
+
*
|
|
554
|
+
* @param {string} flags
|
|
555
|
+
* @param {string} [description]
|
|
556
|
+
* @return {Option} new option
|
|
557
|
+
*/
|
|
558
|
+
|
|
559
|
+
createOption(flags, description) {
|
|
560
|
+
return new Option(flags, description);
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
/**
|
|
564
|
+
* Wrap parseArgs to catch 'commander.invalidArgument'.
|
|
565
|
+
*
|
|
566
|
+
* @param {(Option | Argument)} target
|
|
567
|
+
* @param {string} value
|
|
568
|
+
* @param {*} previous
|
|
569
|
+
* @param {string} invalidArgumentMessage
|
|
570
|
+
* @private
|
|
571
|
+
*/
|
|
572
|
+
|
|
573
|
+
_callParseArg(target, value, previous, invalidArgumentMessage) {
|
|
574
|
+
try {
|
|
575
|
+
return target.parseArg(value, previous);
|
|
576
|
+
} catch (err) {
|
|
577
|
+
if (err.code === 'commander.invalidArgument') {
|
|
578
|
+
const message = `${invalidArgumentMessage} ${err.message}`;
|
|
579
|
+
this.error(message, { exitCode: err.exitCode, code: err.code });
|
|
580
|
+
}
|
|
581
|
+
throw err;
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
/**
|
|
586
|
+
* Check for option flag conflicts.
|
|
587
|
+
* Register option if no conflicts found, or throw on conflict.
|
|
588
|
+
*
|
|
589
|
+
* @param {Option} option
|
|
590
|
+
* @private
|
|
591
|
+
*/
|
|
592
|
+
|
|
593
|
+
_registerOption(option) {
|
|
594
|
+
const matchingOption =
|
|
595
|
+
(option.short && this._findOption(option.short)) ||
|
|
596
|
+
(option.long && this._findOption(option.long));
|
|
597
|
+
if (matchingOption) {
|
|
598
|
+
const matchingFlag =
|
|
599
|
+
option.long && this._findOption(option.long)
|
|
600
|
+
? option.long
|
|
601
|
+
: option.short;
|
|
602
|
+
throw new Error(`Cannot add option '${option.flags}'${this._name && ` to command '${this._name}'`} due to conflicting flag '${matchingFlag}'
|
|
603
|
+
- already used by option '${matchingOption.flags}'`);
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
this.options.push(option);
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
/**
|
|
610
|
+
* Check for command name and alias conflicts with existing commands.
|
|
611
|
+
* Register command if no conflicts found, or throw on conflict.
|
|
612
|
+
*
|
|
613
|
+
* @param {Command} command
|
|
614
|
+
* @private
|
|
615
|
+
*/
|
|
616
|
+
|
|
617
|
+
_registerCommand(command) {
|
|
618
|
+
const knownBy = (cmd) => {
|
|
619
|
+
return [cmd.name()].concat(cmd.aliases());
|
|
620
|
+
};
|
|
621
|
+
|
|
622
|
+
const alreadyUsed = knownBy(command).find((name) =>
|
|
623
|
+
this._findCommand(name),
|
|
624
|
+
);
|
|
625
|
+
if (alreadyUsed) {
|
|
626
|
+
const existingCmd = knownBy(this._findCommand(alreadyUsed)).join('|');
|
|
627
|
+
const newCmd = knownBy(command).join('|');
|
|
628
|
+
throw new Error(
|
|
629
|
+
`cannot add command '${newCmd}' as already have command '${existingCmd}'`,
|
|
630
|
+
);
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
this.commands.push(command);
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
/**
|
|
637
|
+
* Add an option.
|
|
638
|
+
*
|
|
639
|
+
* @param {Option} option
|
|
640
|
+
* @return {Command} `this` command for chaining
|
|
641
|
+
*/
|
|
642
|
+
addOption(option) {
|
|
643
|
+
this._registerOption(option);
|
|
644
|
+
|
|
645
|
+
const oname = option.name();
|
|
646
|
+
const name = option.attributeName();
|
|
647
|
+
|
|
648
|
+
// store default value
|
|
649
|
+
if (option.negate) {
|
|
650
|
+
// --no-foo is special and defaults foo to true, unless a --foo option is already defined
|
|
651
|
+
const positiveLongFlag = option.long.replace(/^--no-/, '--');
|
|
652
|
+
if (!this._findOption(positiveLongFlag)) {
|
|
653
|
+
this.setOptionValueWithSource(
|
|
654
|
+
name,
|
|
655
|
+
option.defaultValue === undefined ? true : option.defaultValue,
|
|
656
|
+
'default',
|
|
657
|
+
);
|
|
658
|
+
}
|
|
659
|
+
} else if (option.defaultValue !== undefined) {
|
|
660
|
+
this.setOptionValueWithSource(name, option.defaultValue, 'default');
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
// handler for cli and env supplied values
|
|
664
|
+
const handleOptionValue = (val, invalidValueMessage, valueSource) => {
|
|
665
|
+
// val is null for optional option used without an optional-argument.
|
|
666
|
+
// val is undefined for boolean and negated option.
|
|
667
|
+
if (val == null && option.presetArg !== undefined) {
|
|
668
|
+
val = option.presetArg;
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
// custom processing
|
|
672
|
+
const oldValue = this.getOptionValue(name);
|
|
673
|
+
if (val !== null && option.parseArg) {
|
|
674
|
+
val = this._callParseArg(option, val, oldValue, invalidValueMessage);
|
|
675
|
+
} else if (val !== null && option.variadic) {
|
|
676
|
+
val = option._concatValue(val, oldValue);
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
// Fill-in appropriate missing values. Long winded but easy to follow.
|
|
680
|
+
if (val == null) {
|
|
681
|
+
if (option.negate) {
|
|
682
|
+
val = false;
|
|
683
|
+
} else if (option.isBoolean() || option.optional) {
|
|
684
|
+
val = true;
|
|
685
|
+
} else {
|
|
686
|
+
val = ''; // not normal, parseArg might have failed or be a mock function for testing
|
|
687
|
+
}
|
|
688
|
+
}
|
|
689
|
+
this.setOptionValueWithSource(name, val, valueSource);
|
|
690
|
+
};
|
|
691
|
+
|
|
692
|
+
this.on('option:' + oname, (val) => {
|
|
693
|
+
const invalidValueMessage = `error: option '${option.flags}' argument '${val}' is invalid.`;
|
|
694
|
+
handleOptionValue(val, invalidValueMessage, 'cli');
|
|
695
|
+
});
|
|
696
|
+
|
|
697
|
+
if (option.envVar) {
|
|
698
|
+
this.on('optionEnv:' + oname, (val) => {
|
|
699
|
+
const invalidValueMessage = `error: option '${option.flags}' value '${val}' from env '${option.envVar}' is invalid.`;
|
|
700
|
+
handleOptionValue(val, invalidValueMessage, 'env');
|
|
701
|
+
});
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
return this;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
/**
|
|
708
|
+
* Internal implementation shared by .option() and .requiredOption()
|
|
709
|
+
*
|
|
710
|
+
* @return {Command} `this` command for chaining
|
|
711
|
+
* @private
|
|
712
|
+
*/
|
|
713
|
+
_optionEx(config, flags, description, fn, defaultValue) {
|
|
714
|
+
if (typeof flags === 'object' && flags instanceof Option) {
|
|
715
|
+
throw new Error(
|
|
716
|
+
'To add an Option object use addOption() instead of option() or requiredOption()',
|
|
717
|
+
);
|
|
718
|
+
}
|
|
719
|
+
const option = this.createOption(flags, description);
|
|
720
|
+
option.makeOptionMandatory(!!config.mandatory);
|
|
721
|
+
if (typeof fn === 'function') {
|
|
722
|
+
option.default(defaultValue).argParser(fn);
|
|
723
|
+
} else if (fn instanceof RegExp) {
|
|
724
|
+
// deprecated
|
|
725
|
+
const regex = fn;
|
|
726
|
+
fn = (val, def) => {
|
|
727
|
+
const m = regex.exec(val);
|
|
728
|
+
return m ? m[0] : def;
|
|
729
|
+
};
|
|
730
|
+
option.default(defaultValue).argParser(fn);
|
|
731
|
+
} else {
|
|
732
|
+
option.default(fn);
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
return this.addOption(option);
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
/**
|
|
739
|
+
* Define option with `flags`, `description`, and optional argument parsing function or `defaultValue` or both.
|
|
740
|
+
*
|
|
741
|
+
* The `flags` string contains the short and/or long flags, separated by comma, a pipe or space. A required
|
|
742
|
+
* option-argument is indicated by `<>` and an optional option-argument by `[]`.
|
|
743
|
+
*
|
|
744
|
+
* See the README for more details, and see also addOption() and requiredOption().
|
|
745
|
+
*
|
|
746
|
+
* @example
|
|
747
|
+
* program
|
|
748
|
+
* .option('-p, --pepper', 'add pepper')
|
|
749
|
+
* .option('-p, --pizza-type <TYPE>', 'type of pizza') // required option-argument
|
|
750
|
+
* .option('-c, --cheese [CHEESE]', 'add extra cheese', 'mozzarella') // optional option-argument with default
|
|
751
|
+
* .option('-t, --tip <VALUE>', 'add tip to purchase cost', parseFloat) // custom parse function
|
|
752
|
+
*
|
|
753
|
+
* @param {string} flags
|
|
754
|
+
* @param {string} [description]
|
|
755
|
+
* @param {(Function|*)} [parseArg] - custom option processing function or default value
|
|
756
|
+
* @param {*} [defaultValue]
|
|
757
|
+
* @return {Command} `this` command for chaining
|
|
758
|
+
*/
|
|
759
|
+
|
|
760
|
+
option(flags, description, parseArg, defaultValue) {
|
|
761
|
+
return this._optionEx({}, flags, description, parseArg, defaultValue);
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
/**
|
|
765
|
+
* Add a required option which must have a value after parsing. This usually means
|
|
766
|
+
* the option must be specified on the command line. (Otherwise the same as .option().)
|
|
767
|
+
*
|
|
768
|
+
* The `flags` string contains the short and/or long flags, separated by comma, a pipe or space.
|
|
769
|
+
*
|
|
770
|
+
* @param {string} flags
|
|
771
|
+
* @param {string} [description]
|
|
772
|
+
* @param {(Function|*)} [parseArg] - custom option processing function or default value
|
|
773
|
+
* @param {*} [defaultValue]
|
|
774
|
+
* @return {Command} `this` command for chaining
|
|
775
|
+
*/
|
|
776
|
+
|
|
777
|
+
requiredOption(flags, description, parseArg, defaultValue) {
|
|
778
|
+
return this._optionEx(
|
|
779
|
+
{ mandatory: true },
|
|
780
|
+
flags,
|
|
781
|
+
description,
|
|
782
|
+
parseArg,
|
|
783
|
+
defaultValue,
|
|
784
|
+
);
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
/**
|
|
788
|
+
* Alter parsing of short flags with optional values.
|
|
789
|
+
*
|
|
790
|
+
* @example
|
|
791
|
+
* // for `.option('-f,--flag [value]'):
|
|
792
|
+
* program.combineFlagAndOptionalValue(true); // `-f80` is treated like `--flag=80`, this is the default behaviour
|
|
793
|
+
* program.combineFlagAndOptionalValue(false) // `-fb` is treated like `-f -b`
|
|
794
|
+
*
|
|
795
|
+
* @param {boolean} [combine] - if `true` or omitted, an optional value can be specified directly after the flag.
|
|
796
|
+
* @return {Command} `this` command for chaining
|
|
797
|
+
*/
|
|
798
|
+
combineFlagAndOptionalValue(combine = true) {
|
|
799
|
+
this._combineFlagAndOptionalValue = !!combine;
|
|
800
|
+
return this;
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
/**
|
|
804
|
+
* Allow unknown options on the command line.
|
|
805
|
+
*
|
|
806
|
+
* @param {boolean} [allowUnknown] - if `true` or omitted, no error will be thrown for unknown options.
|
|
807
|
+
* @return {Command} `this` command for chaining
|
|
808
|
+
*/
|
|
809
|
+
allowUnknownOption(allowUnknown = true) {
|
|
810
|
+
this._allowUnknownOption = !!allowUnknown;
|
|
811
|
+
return this;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
/**
|
|
815
|
+
* Allow excess command-arguments on the command line. Pass false to make excess arguments an error.
|
|
816
|
+
*
|
|
817
|
+
* @param {boolean} [allowExcess] - if `true` or omitted, no error will be thrown for excess arguments.
|
|
818
|
+
* @return {Command} `this` command for chaining
|
|
819
|
+
*/
|
|
820
|
+
allowExcessArguments(allowExcess = true) {
|
|
821
|
+
this._allowExcessArguments = !!allowExcess;
|
|
822
|
+
return this;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
/**
|
|
826
|
+
* Enable positional options. Positional means global options are specified before subcommands which lets
|
|
827
|
+
* subcommands reuse the same option names, and also enables subcommands to turn on passThroughOptions.
|
|
828
|
+
* The default behaviour is non-positional and global options may appear anywhere on the command line.
|
|
829
|
+
*
|
|
830
|
+
* @param {boolean} [positional]
|
|
831
|
+
* @return {Command} `this` command for chaining
|
|
832
|
+
*/
|
|
833
|
+
enablePositionalOptions(positional = true) {
|
|
834
|
+
this._enablePositionalOptions = !!positional;
|
|
835
|
+
return this;
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
/**
|
|
839
|
+
* Pass through options that come after command-arguments rather than treat them as command-options,
|
|
840
|
+
* so actual command-options come before command-arguments. Turning this on for a subcommand requires
|
|
841
|
+
* positional options to have been enabled on the program (parent commands).
|
|
842
|
+
* The default behaviour is non-positional and options may appear before or after command-arguments.
|
|
843
|
+
*
|
|
844
|
+
* @param {boolean} [passThrough] for unknown options.
|
|
845
|
+
* @return {Command} `this` command for chaining
|
|
846
|
+
*/
|
|
847
|
+
passThroughOptions(passThrough = true) {
|
|
848
|
+
this._passThroughOptions = !!passThrough;
|
|
849
|
+
this._checkForBrokenPassThrough();
|
|
850
|
+
return this;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
/**
|
|
854
|
+
* @private
|
|
855
|
+
*/
|
|
856
|
+
|
|
857
|
+
_checkForBrokenPassThrough() {
|
|
858
|
+
if (
|
|
859
|
+
this.parent &&
|
|
860
|
+
this._passThroughOptions &&
|
|
861
|
+
!this.parent._enablePositionalOptions
|
|
862
|
+
) {
|
|
863
|
+
throw new Error(
|
|
864
|
+
`passThroughOptions cannot be used for '${this._name}' without turning on enablePositionalOptions for parent command(s)`,
|
|
865
|
+
);
|
|
866
|
+
}
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
/**
|
|
870
|
+
* Whether to store option values as properties on command object,
|
|
871
|
+
* or store separately (specify false). In both cases the option values can be accessed using .opts().
|
|
872
|
+
*
|
|
873
|
+
* @param {boolean} [storeAsProperties=true]
|
|
874
|
+
* @return {Command} `this` command for chaining
|
|
875
|
+
*/
|
|
876
|
+
|
|
877
|
+
storeOptionsAsProperties(storeAsProperties = true) {
|
|
878
|
+
if (this.options.length) {
|
|
879
|
+
throw new Error('call .storeOptionsAsProperties() before adding options');
|
|
880
|
+
}
|
|
881
|
+
if (Object.keys(this._optionValues).length) {
|
|
882
|
+
throw new Error(
|
|
883
|
+
'call .storeOptionsAsProperties() before setting option values',
|
|
884
|
+
);
|
|
885
|
+
}
|
|
886
|
+
this._storeOptionsAsProperties = !!storeAsProperties;
|
|
887
|
+
return this;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
/**
|
|
891
|
+
* Retrieve option value.
|
|
892
|
+
*
|
|
893
|
+
* @param {string} key
|
|
894
|
+
* @return {object} value
|
|
895
|
+
*/
|
|
896
|
+
|
|
897
|
+
getOptionValue(key) {
|
|
898
|
+
if (this._storeOptionsAsProperties) {
|
|
899
|
+
return this[key];
|
|
900
|
+
}
|
|
901
|
+
return this._optionValues[key];
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
/**
|
|
905
|
+
* Store option value.
|
|
906
|
+
*
|
|
907
|
+
* @param {string} key
|
|
908
|
+
* @param {object} value
|
|
909
|
+
* @return {Command} `this` command for chaining
|
|
910
|
+
*/
|
|
911
|
+
|
|
912
|
+
setOptionValue(key, value) {
|
|
913
|
+
return this.setOptionValueWithSource(key, value, undefined);
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
/**
|
|
917
|
+
* Store option value and where the value came from.
|
|
918
|
+
*
|
|
919
|
+
* @param {string} key
|
|
920
|
+
* @param {object} value
|
|
921
|
+
* @param {string} source - expected values are default/config/env/cli/implied
|
|
922
|
+
* @return {Command} `this` command for chaining
|
|
923
|
+
*/
|
|
924
|
+
|
|
925
|
+
setOptionValueWithSource(key, value, source) {
|
|
926
|
+
if (this._storeOptionsAsProperties) {
|
|
927
|
+
this[key] = value;
|
|
928
|
+
} else {
|
|
929
|
+
this._optionValues[key] = value;
|
|
930
|
+
}
|
|
931
|
+
this._optionValueSources[key] = source;
|
|
932
|
+
return this;
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
/**
|
|
936
|
+
* Get source of option value.
|
|
937
|
+
* Expected values are default | config | env | cli | implied
|
|
938
|
+
*
|
|
939
|
+
* @param {string} key
|
|
940
|
+
* @return {string}
|
|
941
|
+
*/
|
|
942
|
+
|
|
943
|
+
getOptionValueSource(key) {
|
|
944
|
+
return this._optionValueSources[key];
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
/**
|
|
948
|
+
* Get source of option value. See also .optsWithGlobals().
|
|
949
|
+
* Expected values are default | config | env | cli | implied
|
|
950
|
+
*
|
|
951
|
+
* @param {string} key
|
|
952
|
+
* @return {string}
|
|
953
|
+
*/
|
|
954
|
+
|
|
955
|
+
getOptionValueSourceWithGlobals(key) {
|
|
956
|
+
// global overwrites local, like optsWithGlobals
|
|
957
|
+
let source;
|
|
958
|
+
this._getCommandAndAncestors().forEach((cmd) => {
|
|
959
|
+
if (cmd.getOptionValueSource(key) !== undefined) {
|
|
960
|
+
source = cmd.getOptionValueSource(key);
|
|
961
|
+
}
|
|
962
|
+
});
|
|
963
|
+
return source;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
/**
|
|
967
|
+
* Get user arguments from implied or explicit arguments.
|
|
968
|
+
* Side-effects: set _scriptPath if args included script. Used for default program name, and subcommand searches.
|
|
969
|
+
*
|
|
970
|
+
* @private
|
|
971
|
+
*/
|
|
972
|
+
|
|
973
|
+
_prepareUserArgs(argv, parseOptions) {
|
|
974
|
+
if (argv !== undefined && !Array.isArray(argv)) {
|
|
975
|
+
throw new Error('first parameter to parse must be array or undefined');
|
|
976
|
+
}
|
|
977
|
+
parseOptions = parseOptions || {};
|
|
978
|
+
|
|
979
|
+
// auto-detect argument conventions if nothing supplied
|
|
980
|
+
if (argv === undefined && parseOptions.from === undefined) {
|
|
981
|
+
if (process.versions?.electron) {
|
|
982
|
+
parseOptions.from = 'electron';
|
|
983
|
+
}
|
|
984
|
+
// check node specific options for scenarios where user CLI args follow executable without scriptname
|
|
985
|
+
const execArgv = process.execArgv ?? [];
|
|
986
|
+
if (
|
|
987
|
+
execArgv.includes('-e') ||
|
|
988
|
+
execArgv.includes('--eval') ||
|
|
989
|
+
execArgv.includes('-p') ||
|
|
990
|
+
execArgv.includes('--print')
|
|
991
|
+
) {
|
|
992
|
+
parseOptions.from = 'eval'; // internal usage, not documented
|
|
993
|
+
}
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
// default to using process.argv
|
|
997
|
+
if (argv === undefined) {
|
|
998
|
+
argv = process.argv;
|
|
999
|
+
}
|
|
1000
|
+
this.rawArgs = argv.slice();
|
|
1001
|
+
|
|
1002
|
+
// extract the user args and scriptPath
|
|
1003
|
+
let userArgs;
|
|
1004
|
+
switch (parseOptions.from) {
|
|
1005
|
+
case undefined:
|
|
1006
|
+
case 'node':
|
|
1007
|
+
this._scriptPath = argv[1];
|
|
1008
|
+
userArgs = argv.slice(2);
|
|
1009
|
+
break;
|
|
1010
|
+
case 'electron':
|
|
1011
|
+
// @ts-ignore: because defaultApp is an unknown property
|
|
1012
|
+
if (process.defaultApp) {
|
|
1013
|
+
this._scriptPath = argv[1];
|
|
1014
|
+
userArgs = argv.slice(2);
|
|
1015
|
+
} else {
|
|
1016
|
+
userArgs = argv.slice(1);
|
|
1017
|
+
}
|
|
1018
|
+
break;
|
|
1019
|
+
case 'user':
|
|
1020
|
+
userArgs = argv.slice(0);
|
|
1021
|
+
break;
|
|
1022
|
+
case 'eval':
|
|
1023
|
+
userArgs = argv.slice(1);
|
|
1024
|
+
break;
|
|
1025
|
+
default:
|
|
1026
|
+
throw new Error(
|
|
1027
|
+
`unexpected parse option { from: '${parseOptions.from}' }`,
|
|
1028
|
+
);
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
// Find default name for program from arguments.
|
|
1032
|
+
if (!this._name && this._scriptPath)
|
|
1033
|
+
this.nameFromFilename(this._scriptPath);
|
|
1034
|
+
this._name = this._name || 'program';
|
|
1035
|
+
|
|
1036
|
+
return userArgs;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
/**
|
|
1040
|
+
* Parse `argv`, setting options and invoking commands when defined.
|
|
1041
|
+
*
|
|
1042
|
+
* Use parseAsync instead of parse if any of your action handlers are async.
|
|
1043
|
+
*
|
|
1044
|
+
* Call with no parameters to parse `process.argv`. Detects Electron and special node options like `node --eval`. Easy mode!
|
|
1045
|
+
*
|
|
1046
|
+
* Or call with an array of strings to parse, and optionally where the user arguments start by specifying where the arguments are `from`:
|
|
1047
|
+
* - `'node'`: default, `argv[0]` is the application and `argv[1]` is the script being run, with user arguments after that
|
|
1048
|
+
* - `'electron'`: `argv[0]` is the application and `argv[1]` varies depending on whether the electron application is packaged
|
|
1049
|
+
* - `'user'`: just user arguments
|
|
1050
|
+
*
|
|
1051
|
+
* @example
|
|
1052
|
+
* program.parse(); // parse process.argv and auto-detect electron and special node flags
|
|
1053
|
+
* program.parse(process.argv); // assume argv[0] is app and argv[1] is script
|
|
1054
|
+
* program.parse(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]
|
|
1055
|
+
*
|
|
1056
|
+
* @param {string[]} [argv] - optional, defaults to process.argv
|
|
1057
|
+
* @param {object} [parseOptions] - optionally specify style of options with from: node/user/electron
|
|
1058
|
+
* @param {string} [parseOptions.from] - where the args are from: 'node', 'user', 'electron'
|
|
1059
|
+
* @return {Command} `this` command for chaining
|
|
1060
|
+
*/
|
|
1061
|
+
|
|
1062
|
+
parse(argv, parseOptions) {
|
|
1063
|
+
const userArgs = this._prepareUserArgs(argv, parseOptions);
|
|
1064
|
+
this._parseCommand([], userArgs);
|
|
1065
|
+
|
|
1066
|
+
return this;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
/**
|
|
1070
|
+
* Parse `argv`, setting options and invoking commands when defined.
|
|
1071
|
+
*
|
|
1072
|
+
* Call with no parameters to parse `process.argv`. Detects Electron and special node options like `node --eval`. Easy mode!
|
|
1073
|
+
*
|
|
1074
|
+
* Or call with an array of strings to parse, and optionally where the user arguments start by specifying where the arguments are `from`:
|
|
1075
|
+
* - `'node'`: default, `argv[0]` is the application and `argv[1]` is the script being run, with user arguments after that
|
|
1076
|
+
* - `'electron'`: `argv[0]` is the application and `argv[1]` varies depending on whether the electron application is packaged
|
|
1077
|
+
* - `'user'`: just user arguments
|
|
1078
|
+
*
|
|
1079
|
+
* @example
|
|
1080
|
+
* await program.parseAsync(); // parse process.argv and auto-detect electron and special node flags
|
|
1081
|
+
* await program.parseAsync(process.argv); // assume argv[0] is app and argv[1] is script
|
|
1082
|
+
* await program.parseAsync(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]
|
|
1083
|
+
*
|
|
1084
|
+
* @param {string[]} [argv]
|
|
1085
|
+
* @param {object} [parseOptions]
|
|
1086
|
+
* @param {string} parseOptions.from - where the args are from: 'node', 'user', 'electron'
|
|
1087
|
+
* @return {Promise}
|
|
1088
|
+
*/
|
|
1089
|
+
|
|
1090
|
+
async parseAsync(argv, parseOptions) {
|
|
1091
|
+
const userArgs = this._prepareUserArgs(argv, parseOptions);
|
|
1092
|
+
await this._parseCommand([], userArgs);
|
|
1093
|
+
|
|
1094
|
+
return this;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
/**
|
|
1098
|
+
* Execute a sub-command executable.
|
|
1099
|
+
*
|
|
1100
|
+
* @private
|
|
1101
|
+
*/
|
|
1102
|
+
|
|
1103
|
+
_executeSubCommand(subcommand, args) {
|
|
1104
|
+
args = args.slice();
|
|
1105
|
+
let launchWithNode = false; // Use node for source targets so do not need to get permissions correct, and on Windows.
|
|
1106
|
+
const sourceExt = ['.js', '.ts', '.tsx', '.mjs', '.cjs'];
|
|
1107
|
+
|
|
1108
|
+
function findFile(baseDir, baseName) {
|
|
1109
|
+
// Look for specified file
|
|
1110
|
+
const localBin = path.resolve(baseDir, baseName);
|
|
1111
|
+
if (fs.existsSync(localBin)) return localBin;
|
|
1112
|
+
|
|
1113
|
+
// Stop looking if candidate already has an expected extension.
|
|
1114
|
+
if (sourceExt.includes(path.extname(baseName))) return undefined;
|
|
1115
|
+
|
|
1116
|
+
// Try all the extensions.
|
|
1117
|
+
const foundExt = sourceExt.find((ext) =>
|
|
1118
|
+
fs.existsSync(`${localBin}${ext}`),
|
|
1119
|
+
);
|
|
1120
|
+
if (foundExt) return `${localBin}${foundExt}`;
|
|
1121
|
+
|
|
1122
|
+
return undefined;
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
// Not checking for help first. Unlikely to have mandatory and executable, and can't robustly test for help flags in external command.
|
|
1126
|
+
this._checkForMissingMandatoryOptions();
|
|
1127
|
+
this._checkForConflictingOptions();
|
|
1128
|
+
|
|
1129
|
+
// executableFile and executableDir might be full path, or just a name
|
|
1130
|
+
let executableFile =
|
|
1131
|
+
subcommand._executableFile || `${this._name}-${subcommand._name}`;
|
|
1132
|
+
let executableDir = this._executableDir || '';
|
|
1133
|
+
if (this._scriptPath) {
|
|
1134
|
+
let resolvedScriptPath; // resolve possible symlink for installed npm binary
|
|
1135
|
+
try {
|
|
1136
|
+
resolvedScriptPath = fs.realpathSync(this._scriptPath);
|
|
1137
|
+
} catch (err) {
|
|
1138
|
+
resolvedScriptPath = this._scriptPath;
|
|
1139
|
+
}
|
|
1140
|
+
executableDir = path.resolve(
|
|
1141
|
+
path.dirname(resolvedScriptPath),
|
|
1142
|
+
executableDir,
|
|
1143
|
+
);
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
// Look for a local file in preference to a command in PATH.
|
|
1147
|
+
if (executableDir) {
|
|
1148
|
+
let localFile = findFile(executableDir, executableFile);
|
|
1149
|
+
|
|
1150
|
+
// Legacy search using prefix of script name instead of command name
|
|
1151
|
+
if (!localFile && !subcommand._executableFile && this._scriptPath) {
|
|
1152
|
+
const legacyName = path.basename(
|
|
1153
|
+
this._scriptPath,
|
|
1154
|
+
path.extname(this._scriptPath),
|
|
1155
|
+
);
|
|
1156
|
+
if (legacyName !== this._name) {
|
|
1157
|
+
localFile = findFile(
|
|
1158
|
+
executableDir,
|
|
1159
|
+
`${legacyName}-${subcommand._name}`,
|
|
1160
|
+
);
|
|
1161
|
+
}
|
|
1162
|
+
}
|
|
1163
|
+
executableFile = localFile || executableFile;
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
launchWithNode = sourceExt.includes(path.extname(executableFile));
|
|
1167
|
+
|
|
1168
|
+
let proc;
|
|
1169
|
+
if (process.platform !== 'win32') {
|
|
1170
|
+
if (launchWithNode) {
|
|
1171
|
+
args.unshift(executableFile);
|
|
1172
|
+
// add executable arguments to spawn
|
|
1173
|
+
args = incrementNodeInspectorPort(process.execArgv).concat(args);
|
|
1174
|
+
|
|
1175
|
+
proc = childProcess.spawn(process.argv[0], args, { stdio: 'inherit' });
|
|
1176
|
+
} else {
|
|
1177
|
+
proc = childProcess.spawn(executableFile, args, { stdio: 'inherit' });
|
|
1178
|
+
}
|
|
1179
|
+
} else {
|
|
1180
|
+
args.unshift(executableFile);
|
|
1181
|
+
// add executable arguments to spawn
|
|
1182
|
+
args = incrementNodeInspectorPort(process.execArgv).concat(args);
|
|
1183
|
+
proc = childProcess.spawn(process.execPath, args, { stdio: 'inherit' });
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
if (!proc.killed) {
|
|
1187
|
+
// testing mainly to avoid leak warnings during unit tests with mocked spawn
|
|
1188
|
+
const signals = ['SIGUSR1', 'SIGUSR2', 'SIGTERM', 'SIGINT', 'SIGHUP'];
|
|
1189
|
+
signals.forEach((signal) => {
|
|
1190
|
+
process.on(signal, () => {
|
|
1191
|
+
if (proc.killed === false && proc.exitCode === null) {
|
|
1192
|
+
// @ts-ignore because signals not typed to known strings
|
|
1193
|
+
proc.kill(signal);
|
|
1194
|
+
}
|
|
1195
|
+
});
|
|
1196
|
+
});
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
// By default terminate process when spawned process terminates.
|
|
1200
|
+
const exitCallback = this._exitCallback;
|
|
1201
|
+
proc.on('close', (code) => {
|
|
1202
|
+
code = code ?? 1; // code is null if spawned process terminated due to a signal
|
|
1203
|
+
if (!exitCallback) {
|
|
1204
|
+
process.exit(code);
|
|
1205
|
+
} else {
|
|
1206
|
+
exitCallback(
|
|
1207
|
+
new CommanderError(
|
|
1208
|
+
code,
|
|
1209
|
+
'commander.executeSubCommandAsync',
|
|
1210
|
+
'(close)',
|
|
1211
|
+
),
|
|
1212
|
+
);
|
|
1213
|
+
}
|
|
1214
|
+
});
|
|
1215
|
+
proc.on('error', (err) => {
|
|
1216
|
+
// @ts-ignore: because err.code is an unknown property
|
|
1217
|
+
if (err.code === 'ENOENT') {
|
|
1218
|
+
const executableDirMessage = executableDir
|
|
1219
|
+
? `searched for local subcommand relative to directory '${executableDir}'`
|
|
1220
|
+
: 'no directory for search for local subcommand, use .executableDir() to supply a custom directory';
|
|
1221
|
+
const executableMissing = `'${executableFile}' does not exist
|
|
1222
|
+
- if '${subcommand._name}' is not meant to be an executable command, remove description parameter from '.command()' and use '.description()' instead
|
|
1223
|
+
- if the default executable name is not suitable, use the executableFile option to supply a custom name or path
|
|
1224
|
+
- ${executableDirMessage}`;
|
|
1225
|
+
throw new Error(executableMissing);
|
|
1226
|
+
// @ts-ignore: because err.code is an unknown property
|
|
1227
|
+
} else if (err.code === 'EACCES') {
|
|
1228
|
+
throw new Error(`'${executableFile}' not executable`);
|
|
1229
|
+
}
|
|
1230
|
+
if (!exitCallback) {
|
|
1231
|
+
process.exit(1);
|
|
1232
|
+
} else {
|
|
1233
|
+
const wrappedError = new CommanderError(
|
|
1234
|
+
1,
|
|
1235
|
+
'commander.executeSubCommandAsync',
|
|
1236
|
+
'(error)',
|
|
1237
|
+
);
|
|
1238
|
+
wrappedError.nestedError = err;
|
|
1239
|
+
exitCallback(wrappedError);
|
|
1240
|
+
}
|
|
1241
|
+
});
|
|
1242
|
+
|
|
1243
|
+
// Store the reference to the child process
|
|
1244
|
+
this.runningCommand = proc;
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
/**
|
|
1248
|
+
* @private
|
|
1249
|
+
*/
|
|
1250
|
+
|
|
1251
|
+
_dispatchSubcommand(commandName, operands, unknown) {
|
|
1252
|
+
const subCommand = this._findCommand(commandName);
|
|
1253
|
+
if (!subCommand) this.help({ error: true });
|
|
1254
|
+
|
|
1255
|
+
let promiseChain;
|
|
1256
|
+
promiseChain = this._chainOrCallSubCommandHook(
|
|
1257
|
+
promiseChain,
|
|
1258
|
+
subCommand,
|
|
1259
|
+
'preSubcommand',
|
|
1260
|
+
);
|
|
1261
|
+
promiseChain = this._chainOrCall(promiseChain, () => {
|
|
1262
|
+
if (subCommand._executableHandler) {
|
|
1263
|
+
this._executeSubCommand(subCommand, operands.concat(unknown));
|
|
1264
|
+
} else {
|
|
1265
|
+
return subCommand._parseCommand(operands, unknown);
|
|
1266
|
+
}
|
|
1267
|
+
});
|
|
1268
|
+
return promiseChain;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
/**
|
|
1272
|
+
* Invoke help directly if possible, or dispatch if necessary.
|
|
1273
|
+
* e.g. help foo
|
|
1274
|
+
*
|
|
1275
|
+
* @private
|
|
1276
|
+
*/
|
|
1277
|
+
|
|
1278
|
+
_dispatchHelpCommand(subcommandName) {
|
|
1279
|
+
if (!subcommandName) {
|
|
1280
|
+
this.help();
|
|
1281
|
+
}
|
|
1282
|
+
const subCommand = this._findCommand(subcommandName);
|
|
1283
|
+
if (subCommand && !subCommand._executableHandler) {
|
|
1284
|
+
subCommand.help();
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1287
|
+
// Fallback to parsing the help flag to invoke the help.
|
|
1288
|
+
return this._dispatchSubcommand(
|
|
1289
|
+
subcommandName,
|
|
1290
|
+
[],
|
|
1291
|
+
[this._getHelpOption()?.long ?? this._getHelpOption()?.short ?? '--help'],
|
|
1292
|
+
);
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
/**
|
|
1296
|
+
* Check this.args against expected this.registeredArguments.
|
|
1297
|
+
*
|
|
1298
|
+
* @private
|
|
1299
|
+
*/
|
|
1300
|
+
|
|
1301
|
+
_checkNumberOfArguments() {
|
|
1302
|
+
// too few
|
|
1303
|
+
this.registeredArguments.forEach((arg, i) => {
|
|
1304
|
+
if (arg.required && this.args[i] == null) {
|
|
1305
|
+
this.missingArgument(arg.name());
|
|
1306
|
+
}
|
|
1307
|
+
});
|
|
1308
|
+
// too many
|
|
1309
|
+
if (
|
|
1310
|
+
this.registeredArguments.length > 0 &&
|
|
1311
|
+
this.registeredArguments[this.registeredArguments.length - 1].variadic
|
|
1312
|
+
) {
|
|
1313
|
+
return;
|
|
1314
|
+
}
|
|
1315
|
+
if (this.args.length > this.registeredArguments.length) {
|
|
1316
|
+
this._excessArguments(this.args);
|
|
1317
|
+
}
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
/**
|
|
1321
|
+
* Process this.args using this.registeredArguments and save as this.processedArgs!
|
|
1322
|
+
*
|
|
1323
|
+
* @private
|
|
1324
|
+
*/
|
|
1325
|
+
|
|
1326
|
+
_processArguments() {
|
|
1327
|
+
const myParseArg = (argument, value, previous) => {
|
|
1328
|
+
// Extra processing for nice error message on parsing failure.
|
|
1329
|
+
let parsedValue = value;
|
|
1330
|
+
if (value !== null && argument.parseArg) {
|
|
1331
|
+
const invalidValueMessage = `error: command-argument value '${value}' is invalid for argument '${argument.name()}'.`;
|
|
1332
|
+
parsedValue = this._callParseArg(
|
|
1333
|
+
argument,
|
|
1334
|
+
value,
|
|
1335
|
+
previous,
|
|
1336
|
+
invalidValueMessage,
|
|
1337
|
+
);
|
|
1338
|
+
}
|
|
1339
|
+
return parsedValue;
|
|
1340
|
+
};
|
|
1341
|
+
|
|
1342
|
+
this._checkNumberOfArguments();
|
|
1343
|
+
|
|
1344
|
+
const processedArgs = [];
|
|
1345
|
+
this.registeredArguments.forEach((declaredArg, index) => {
|
|
1346
|
+
let value = declaredArg.defaultValue;
|
|
1347
|
+
if (declaredArg.variadic) {
|
|
1348
|
+
// Collect together remaining arguments for passing together as an array.
|
|
1349
|
+
if (index < this.args.length) {
|
|
1350
|
+
value = this.args.slice(index);
|
|
1351
|
+
if (declaredArg.parseArg) {
|
|
1352
|
+
value = value.reduce((processed, v) => {
|
|
1353
|
+
return myParseArg(declaredArg, v, processed);
|
|
1354
|
+
}, declaredArg.defaultValue);
|
|
1355
|
+
}
|
|
1356
|
+
} else if (value === undefined) {
|
|
1357
|
+
value = [];
|
|
1358
|
+
}
|
|
1359
|
+
} else if (index < this.args.length) {
|
|
1360
|
+
value = this.args[index];
|
|
1361
|
+
if (declaredArg.parseArg) {
|
|
1362
|
+
value = myParseArg(declaredArg, value, declaredArg.defaultValue);
|
|
1363
|
+
}
|
|
1364
|
+
}
|
|
1365
|
+
processedArgs[index] = value;
|
|
1366
|
+
});
|
|
1367
|
+
this.processedArgs = processedArgs;
|
|
1368
|
+
}
|
|
1369
|
+
|
|
1370
|
+
/**
|
|
1371
|
+
* Once we have a promise we chain, but call synchronously until then.
|
|
1372
|
+
*
|
|
1373
|
+
* @param {(Promise|undefined)} promise
|
|
1374
|
+
* @param {Function} fn
|
|
1375
|
+
* @return {(Promise|undefined)}
|
|
1376
|
+
* @private
|
|
1377
|
+
*/
|
|
1378
|
+
|
|
1379
|
+
_chainOrCall(promise, fn) {
|
|
1380
|
+
// thenable
|
|
1381
|
+
if (promise && promise.then && typeof promise.then === 'function') {
|
|
1382
|
+
// already have a promise, chain callback
|
|
1383
|
+
return promise.then(() => fn());
|
|
1384
|
+
}
|
|
1385
|
+
// callback might return a promise
|
|
1386
|
+
return fn();
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
/**
|
|
1390
|
+
*
|
|
1391
|
+
* @param {(Promise|undefined)} promise
|
|
1392
|
+
* @param {string} event
|
|
1393
|
+
* @return {(Promise|undefined)}
|
|
1394
|
+
* @private
|
|
1395
|
+
*/
|
|
1396
|
+
|
|
1397
|
+
_chainOrCallHooks(promise, event) {
|
|
1398
|
+
let result = promise;
|
|
1399
|
+
const hooks = [];
|
|
1400
|
+
this._getCommandAndAncestors()
|
|
1401
|
+
.reverse()
|
|
1402
|
+
.filter((cmd) => cmd._lifeCycleHooks[event] !== undefined)
|
|
1403
|
+
.forEach((hookedCommand) => {
|
|
1404
|
+
hookedCommand._lifeCycleHooks[event].forEach((callback) => {
|
|
1405
|
+
hooks.push({ hookedCommand, callback });
|
|
1406
|
+
});
|
|
1407
|
+
});
|
|
1408
|
+
if (event === 'postAction') {
|
|
1409
|
+
hooks.reverse();
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
hooks.forEach((hookDetail) => {
|
|
1413
|
+
result = this._chainOrCall(result, () => {
|
|
1414
|
+
return hookDetail.callback(hookDetail.hookedCommand, this);
|
|
1415
|
+
});
|
|
1416
|
+
});
|
|
1417
|
+
return result;
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
/**
|
|
1421
|
+
*
|
|
1422
|
+
* @param {(Promise|undefined)} promise
|
|
1423
|
+
* @param {Command} subCommand
|
|
1424
|
+
* @param {string} event
|
|
1425
|
+
* @return {(Promise|undefined)}
|
|
1426
|
+
* @private
|
|
1427
|
+
*/
|
|
1428
|
+
|
|
1429
|
+
_chainOrCallSubCommandHook(promise, subCommand, event) {
|
|
1430
|
+
let result = promise;
|
|
1431
|
+
if (this._lifeCycleHooks[event] !== undefined) {
|
|
1432
|
+
this._lifeCycleHooks[event].forEach((hook) => {
|
|
1433
|
+
result = this._chainOrCall(result, () => {
|
|
1434
|
+
return hook(this, subCommand);
|
|
1435
|
+
});
|
|
1436
|
+
});
|
|
1437
|
+
}
|
|
1438
|
+
return result;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
/**
|
|
1442
|
+
* Process arguments in context of this command.
|
|
1443
|
+
* Returns action result, in case it is a promise.
|
|
1444
|
+
*
|
|
1445
|
+
* @private
|
|
1446
|
+
*/
|
|
1447
|
+
|
|
1448
|
+
_parseCommand(operands, unknown) {
|
|
1449
|
+
const parsed = this.parseOptions(unknown);
|
|
1450
|
+
this._parseOptionsEnv(); // after cli, so parseArg not called on both cli and env
|
|
1451
|
+
this._parseOptionsImplied();
|
|
1452
|
+
operands = operands.concat(parsed.operands);
|
|
1453
|
+
unknown = parsed.unknown;
|
|
1454
|
+
this.args = operands.concat(unknown);
|
|
1455
|
+
|
|
1456
|
+
if (operands && this._findCommand(operands[0])) {
|
|
1457
|
+
return this._dispatchSubcommand(operands[0], operands.slice(1), unknown);
|
|
1458
|
+
}
|
|
1459
|
+
if (
|
|
1460
|
+
this._getHelpCommand() &&
|
|
1461
|
+
operands[0] === this._getHelpCommand().name()
|
|
1462
|
+
) {
|
|
1463
|
+
return this._dispatchHelpCommand(operands[1]);
|
|
1464
|
+
}
|
|
1465
|
+
if (this._defaultCommandName) {
|
|
1466
|
+
this._outputHelpIfRequested(unknown); // Run the help for default command from parent rather than passing to default command
|
|
1467
|
+
return this._dispatchSubcommand(
|
|
1468
|
+
this._defaultCommandName,
|
|
1469
|
+
operands,
|
|
1470
|
+
unknown,
|
|
1471
|
+
);
|
|
1472
|
+
}
|
|
1473
|
+
if (
|
|
1474
|
+
this.commands.length &&
|
|
1475
|
+
this.args.length === 0 &&
|
|
1476
|
+
!this._actionHandler &&
|
|
1477
|
+
!this._defaultCommandName
|
|
1478
|
+
) {
|
|
1479
|
+
// probably missing subcommand and no handler, user needs help (and exit)
|
|
1480
|
+
this.help({ error: true });
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1483
|
+
this._outputHelpIfRequested(parsed.unknown);
|
|
1484
|
+
this._checkForMissingMandatoryOptions();
|
|
1485
|
+
this._checkForConflictingOptions();
|
|
1486
|
+
|
|
1487
|
+
// We do not always call this check to avoid masking a "better" error, like unknown command.
|
|
1488
|
+
const checkForUnknownOptions = () => {
|
|
1489
|
+
if (parsed.unknown.length > 0) {
|
|
1490
|
+
this.unknownOption(parsed.unknown[0]);
|
|
1491
|
+
}
|
|
1492
|
+
};
|
|
1493
|
+
|
|
1494
|
+
const commandEvent = `command:${this.name()}`;
|
|
1495
|
+
if (this._actionHandler) {
|
|
1496
|
+
checkForUnknownOptions();
|
|
1497
|
+
this._processArguments();
|
|
1498
|
+
|
|
1499
|
+
let promiseChain;
|
|
1500
|
+
promiseChain = this._chainOrCallHooks(promiseChain, 'preAction');
|
|
1501
|
+
promiseChain = this._chainOrCall(promiseChain, () =>
|
|
1502
|
+
this._actionHandler(this.processedArgs),
|
|
1503
|
+
);
|
|
1504
|
+
if (this.parent) {
|
|
1505
|
+
promiseChain = this._chainOrCall(promiseChain, () => {
|
|
1506
|
+
this.parent.emit(commandEvent, operands, unknown); // legacy
|
|
1507
|
+
});
|
|
1508
|
+
}
|
|
1509
|
+
promiseChain = this._chainOrCallHooks(promiseChain, 'postAction');
|
|
1510
|
+
return promiseChain;
|
|
1511
|
+
}
|
|
1512
|
+
if (this.parent && this.parent.listenerCount(commandEvent)) {
|
|
1513
|
+
checkForUnknownOptions();
|
|
1514
|
+
this._processArguments();
|
|
1515
|
+
this.parent.emit(commandEvent, operands, unknown); // legacy
|
|
1516
|
+
} else if (operands.length) {
|
|
1517
|
+
if (this._findCommand('*')) {
|
|
1518
|
+
// legacy default command
|
|
1519
|
+
return this._dispatchSubcommand('*', operands, unknown);
|
|
1520
|
+
}
|
|
1521
|
+
if (this.listenerCount('command:*')) {
|
|
1522
|
+
// skip option check, emit event for possible misspelling suggestion
|
|
1523
|
+
this.emit('command:*', operands, unknown);
|
|
1524
|
+
} else if (this.commands.length) {
|
|
1525
|
+
this.unknownCommand();
|
|
1526
|
+
} else {
|
|
1527
|
+
checkForUnknownOptions();
|
|
1528
|
+
this._processArguments();
|
|
1529
|
+
}
|
|
1530
|
+
} else if (this.commands.length) {
|
|
1531
|
+
checkForUnknownOptions();
|
|
1532
|
+
// This command has subcommands and nothing hooked up at this level, so display help (and exit).
|
|
1533
|
+
this.help({ error: true });
|
|
1534
|
+
} else {
|
|
1535
|
+
checkForUnknownOptions();
|
|
1536
|
+
this._processArguments();
|
|
1537
|
+
// fall through for caller to handle after calling .parse()
|
|
1538
|
+
}
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1541
|
+
/**
|
|
1542
|
+
* Find matching command.
|
|
1543
|
+
*
|
|
1544
|
+
* @private
|
|
1545
|
+
* @return {Command | undefined}
|
|
1546
|
+
*/
|
|
1547
|
+
_findCommand(name) {
|
|
1548
|
+
if (!name) return undefined;
|
|
1549
|
+
return this.commands.find(
|
|
1550
|
+
(cmd) => cmd._name === name || cmd._aliases.includes(name),
|
|
1551
|
+
);
|
|
1552
|
+
}
|
|
1553
|
+
|
|
1554
|
+
/**
|
|
1555
|
+
* Return an option matching `arg` if any.
|
|
1556
|
+
*
|
|
1557
|
+
* @param {string} arg
|
|
1558
|
+
* @return {Option}
|
|
1559
|
+
* @package
|
|
1560
|
+
*/
|
|
1561
|
+
|
|
1562
|
+
_findOption(arg) {
|
|
1563
|
+
return this.options.find((option) => option.is(arg));
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
/**
|
|
1567
|
+
* Display an error message if a mandatory option does not have a value.
|
|
1568
|
+
* Called after checking for help flags in leaf subcommand.
|
|
1569
|
+
*
|
|
1570
|
+
* @private
|
|
1571
|
+
*/
|
|
1572
|
+
|
|
1573
|
+
_checkForMissingMandatoryOptions() {
|
|
1574
|
+
// Walk up hierarchy so can call in subcommand after checking for displaying help.
|
|
1575
|
+
this._getCommandAndAncestors().forEach((cmd) => {
|
|
1576
|
+
cmd.options.forEach((anOption) => {
|
|
1577
|
+
if (
|
|
1578
|
+
anOption.mandatory &&
|
|
1579
|
+
cmd.getOptionValue(anOption.attributeName()) === undefined
|
|
1580
|
+
) {
|
|
1581
|
+
cmd.missingMandatoryOptionValue(anOption);
|
|
1582
|
+
}
|
|
1583
|
+
});
|
|
1584
|
+
});
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
/**
|
|
1588
|
+
* Display an error message if conflicting options are used together in this.
|
|
1589
|
+
*
|
|
1590
|
+
* @private
|
|
1591
|
+
*/
|
|
1592
|
+
_checkForConflictingLocalOptions() {
|
|
1593
|
+
const definedNonDefaultOptions = this.options.filter((option) => {
|
|
1594
|
+
const optionKey = option.attributeName();
|
|
1595
|
+
if (this.getOptionValue(optionKey) === undefined) {
|
|
1596
|
+
return false;
|
|
1597
|
+
}
|
|
1598
|
+
return this.getOptionValueSource(optionKey) !== 'default';
|
|
1599
|
+
});
|
|
1600
|
+
|
|
1601
|
+
const optionsWithConflicting = definedNonDefaultOptions.filter(
|
|
1602
|
+
(option) => option.conflictsWith.length > 0,
|
|
1603
|
+
);
|
|
1604
|
+
|
|
1605
|
+
optionsWithConflicting.forEach((option) => {
|
|
1606
|
+
const conflictingAndDefined = definedNonDefaultOptions.find((defined) =>
|
|
1607
|
+
option.conflictsWith.includes(defined.attributeName()),
|
|
1608
|
+
);
|
|
1609
|
+
if (conflictingAndDefined) {
|
|
1610
|
+
this._conflictingOption(option, conflictingAndDefined);
|
|
1611
|
+
}
|
|
1612
|
+
});
|
|
1613
|
+
}
|
|
1614
|
+
|
|
1615
|
+
/**
|
|
1616
|
+
* Display an error message if conflicting options are used together.
|
|
1617
|
+
* Called after checking for help flags in leaf subcommand.
|
|
1618
|
+
*
|
|
1619
|
+
* @private
|
|
1620
|
+
*/
|
|
1621
|
+
_checkForConflictingOptions() {
|
|
1622
|
+
// Walk up hierarchy so can call in subcommand after checking for displaying help.
|
|
1623
|
+
this._getCommandAndAncestors().forEach((cmd) => {
|
|
1624
|
+
cmd._checkForConflictingLocalOptions();
|
|
1625
|
+
});
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
/**
|
|
1629
|
+
* Parse options from `argv` removing known options,
|
|
1630
|
+
* and return argv split into operands and unknown arguments.
|
|
1631
|
+
*
|
|
1632
|
+
* Examples:
|
|
1633
|
+
*
|
|
1634
|
+
* argv => operands, unknown
|
|
1635
|
+
* --known kkk op => [op], []
|
|
1636
|
+
* op --known kkk => [op], []
|
|
1637
|
+
* sub --unknown uuu op => [sub], [--unknown uuu op]
|
|
1638
|
+
* sub -- --unknown uuu op => [sub --unknown uuu op], []
|
|
1639
|
+
*
|
|
1640
|
+
* @param {string[]} argv
|
|
1641
|
+
* @return {{operands: string[], unknown: string[]}}
|
|
1642
|
+
*/
|
|
1643
|
+
|
|
1644
|
+
parseOptions(argv) {
|
|
1645
|
+
const operands = []; // operands, not options or values
|
|
1646
|
+
const unknown = []; // first unknown option and remaining unknown args
|
|
1647
|
+
let dest = operands;
|
|
1648
|
+
const args = argv.slice();
|
|
1649
|
+
|
|
1650
|
+
function maybeOption(arg) {
|
|
1651
|
+
return arg.length > 1 && arg[0] === '-';
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
// parse options
|
|
1655
|
+
let activeVariadicOption = null;
|
|
1656
|
+
while (args.length) {
|
|
1657
|
+
const arg = args.shift();
|
|
1658
|
+
|
|
1659
|
+
// literal
|
|
1660
|
+
if (arg === '--') {
|
|
1661
|
+
if (dest === unknown) dest.push(arg);
|
|
1662
|
+
dest.push(...args);
|
|
1663
|
+
break;
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1666
|
+
if (activeVariadicOption && !maybeOption(arg)) {
|
|
1667
|
+
this.emit(`option:${activeVariadicOption.name()}`, arg);
|
|
1668
|
+
continue;
|
|
1669
|
+
}
|
|
1670
|
+
activeVariadicOption = null;
|
|
1671
|
+
|
|
1672
|
+
if (maybeOption(arg)) {
|
|
1673
|
+
const option = this._findOption(arg);
|
|
1674
|
+
// recognised option, call listener to assign value with possible custom processing
|
|
1675
|
+
if (option) {
|
|
1676
|
+
if (option.required) {
|
|
1677
|
+
const value = args.shift();
|
|
1678
|
+
if (value === undefined) this.optionMissingArgument(option);
|
|
1679
|
+
this.emit(`option:${option.name()}`, value);
|
|
1680
|
+
} else if (option.optional) {
|
|
1681
|
+
let value = null;
|
|
1682
|
+
// historical behaviour is optional value is following arg unless an option
|
|
1683
|
+
if (args.length > 0 && !maybeOption(args[0])) {
|
|
1684
|
+
value = args.shift();
|
|
1685
|
+
}
|
|
1686
|
+
this.emit(`option:${option.name()}`, value);
|
|
1687
|
+
} else {
|
|
1688
|
+
// boolean flag
|
|
1689
|
+
this.emit(`option:${option.name()}`);
|
|
1690
|
+
}
|
|
1691
|
+
activeVariadicOption = option.variadic ? option : null;
|
|
1692
|
+
continue;
|
|
1693
|
+
}
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
// Look for combo options following single dash, eat first one if known.
|
|
1697
|
+
if (arg.length > 2 && arg[0] === '-' && arg[1] !== '-') {
|
|
1698
|
+
const option = this._findOption(`-${arg[1]}`);
|
|
1699
|
+
if (option) {
|
|
1700
|
+
if (
|
|
1701
|
+
option.required ||
|
|
1702
|
+
(option.optional && this._combineFlagAndOptionalValue)
|
|
1703
|
+
) {
|
|
1704
|
+
// option with value following in same argument
|
|
1705
|
+
this.emit(`option:${option.name()}`, arg.slice(2));
|
|
1706
|
+
} else {
|
|
1707
|
+
// boolean option, emit and put back remainder of arg for further processing
|
|
1708
|
+
this.emit(`option:${option.name()}`);
|
|
1709
|
+
args.unshift(`-${arg.slice(2)}`);
|
|
1710
|
+
}
|
|
1711
|
+
continue;
|
|
1712
|
+
}
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
// Look for known long flag with value, like --foo=bar
|
|
1716
|
+
if (/^--[^=]+=/.test(arg)) {
|
|
1717
|
+
const index = arg.indexOf('=');
|
|
1718
|
+
const option = this._findOption(arg.slice(0, index));
|
|
1719
|
+
if (option && (option.required || option.optional)) {
|
|
1720
|
+
this.emit(`option:${option.name()}`, arg.slice(index + 1));
|
|
1721
|
+
continue;
|
|
1722
|
+
}
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1725
|
+
// Not a recognised option by this command.
|
|
1726
|
+
// Might be a command-argument, or subcommand option, or unknown option, or help command or option.
|
|
1727
|
+
|
|
1728
|
+
// An unknown option means further arguments also classified as unknown so can be reprocessed by subcommands.
|
|
1729
|
+
if (maybeOption(arg)) {
|
|
1730
|
+
dest = unknown;
|
|
1731
|
+
}
|
|
1732
|
+
|
|
1733
|
+
// If using positionalOptions, stop processing our options at subcommand.
|
|
1734
|
+
if (
|
|
1735
|
+
(this._enablePositionalOptions || this._passThroughOptions) &&
|
|
1736
|
+
operands.length === 0 &&
|
|
1737
|
+
unknown.length === 0
|
|
1738
|
+
) {
|
|
1739
|
+
if (this._findCommand(arg)) {
|
|
1740
|
+
operands.push(arg);
|
|
1741
|
+
if (args.length > 0) unknown.push(...args);
|
|
1742
|
+
break;
|
|
1743
|
+
} else if (
|
|
1744
|
+
this._getHelpCommand() &&
|
|
1745
|
+
arg === this._getHelpCommand().name()
|
|
1746
|
+
) {
|
|
1747
|
+
operands.push(arg);
|
|
1748
|
+
if (args.length > 0) operands.push(...args);
|
|
1749
|
+
break;
|
|
1750
|
+
} else if (this._defaultCommandName) {
|
|
1751
|
+
unknown.push(arg);
|
|
1752
|
+
if (args.length > 0) unknown.push(...args);
|
|
1753
|
+
break;
|
|
1754
|
+
}
|
|
1755
|
+
}
|
|
1756
|
+
|
|
1757
|
+
// If using passThroughOptions, stop processing options at first command-argument.
|
|
1758
|
+
if (this._passThroughOptions) {
|
|
1759
|
+
dest.push(arg);
|
|
1760
|
+
if (args.length > 0) dest.push(...args);
|
|
1761
|
+
break;
|
|
1762
|
+
}
|
|
1763
|
+
|
|
1764
|
+
// add arg
|
|
1765
|
+
dest.push(arg);
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
return { operands, unknown };
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
/**
|
|
1772
|
+
* Return an object containing local option values as key-value pairs.
|
|
1773
|
+
*
|
|
1774
|
+
* @return {object}
|
|
1775
|
+
*/
|
|
1776
|
+
opts() {
|
|
1777
|
+
if (this._storeOptionsAsProperties) {
|
|
1778
|
+
// Preserve original behaviour so backwards compatible when still using properties
|
|
1779
|
+
const result = {};
|
|
1780
|
+
const len = this.options.length;
|
|
1781
|
+
|
|
1782
|
+
for (let i = 0; i < len; i++) {
|
|
1783
|
+
const key = this.options[i].attributeName();
|
|
1784
|
+
result[key] =
|
|
1785
|
+
key === this._versionOptionName ? this._version : this[key];
|
|
1786
|
+
}
|
|
1787
|
+
return result;
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
return this._optionValues;
|
|
1791
|
+
}
|
|
1792
|
+
|
|
1793
|
+
/**
|
|
1794
|
+
* Return an object containing merged local and global option values as key-value pairs.
|
|
1795
|
+
*
|
|
1796
|
+
* @return {object}
|
|
1797
|
+
*/
|
|
1798
|
+
optsWithGlobals() {
|
|
1799
|
+
// globals overwrite locals
|
|
1800
|
+
return this._getCommandAndAncestors().reduce(
|
|
1801
|
+
(combinedOptions, cmd) => Object.assign(combinedOptions, cmd.opts()),
|
|
1802
|
+
{},
|
|
1803
|
+
);
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
/**
|
|
1807
|
+
* Display error message and exit (or call exitOverride).
|
|
1808
|
+
*
|
|
1809
|
+
* @param {string} message
|
|
1810
|
+
* @param {object} [errorOptions]
|
|
1811
|
+
* @param {string} [errorOptions.code] - an id string representing the error
|
|
1812
|
+
* @param {number} [errorOptions.exitCode] - used with process.exit
|
|
1813
|
+
*/
|
|
1814
|
+
error(message, errorOptions) {
|
|
1815
|
+
// output handling
|
|
1816
|
+
this._outputConfiguration.outputError(
|
|
1817
|
+
`${message}\n`,
|
|
1818
|
+
this._outputConfiguration.writeErr,
|
|
1819
|
+
);
|
|
1820
|
+
if (typeof this._showHelpAfterError === 'string') {
|
|
1821
|
+
this._outputConfiguration.writeErr(`${this._showHelpAfterError}\n`);
|
|
1822
|
+
} else if (this._showHelpAfterError) {
|
|
1823
|
+
this._outputConfiguration.writeErr('\n');
|
|
1824
|
+
this.outputHelp({ error: true });
|
|
1825
|
+
}
|
|
1826
|
+
|
|
1827
|
+
// exit handling
|
|
1828
|
+
const config = errorOptions || {};
|
|
1829
|
+
const exitCode = config.exitCode || 1;
|
|
1830
|
+
const code = config.code || 'commander.error';
|
|
1831
|
+
this._exit(exitCode, code, message);
|
|
1832
|
+
}
|
|
1833
|
+
|
|
1834
|
+
/**
|
|
1835
|
+
* Apply any option related environment variables, if option does
|
|
1836
|
+
* not have a value from cli or client code.
|
|
1837
|
+
*
|
|
1838
|
+
* @private
|
|
1839
|
+
*/
|
|
1840
|
+
_parseOptionsEnv() {
|
|
1841
|
+
this.options.forEach((option) => {
|
|
1842
|
+
if (option.envVar && option.envVar in process.env) {
|
|
1843
|
+
const optionKey = option.attributeName();
|
|
1844
|
+
// Priority check. Do not overwrite cli or options from unknown source (client-code).
|
|
1845
|
+
if (
|
|
1846
|
+
this.getOptionValue(optionKey) === undefined ||
|
|
1847
|
+
['default', 'config', 'env'].includes(
|
|
1848
|
+
this.getOptionValueSource(optionKey),
|
|
1849
|
+
)
|
|
1850
|
+
) {
|
|
1851
|
+
if (option.required || option.optional) {
|
|
1852
|
+
// option can take a value
|
|
1853
|
+
// keep very simple, optional always takes value
|
|
1854
|
+
this.emit(`optionEnv:${option.name()}`, process.env[option.envVar]);
|
|
1855
|
+
} else {
|
|
1856
|
+
// boolean
|
|
1857
|
+
// keep very simple, only care that envVar defined and not the value
|
|
1858
|
+
this.emit(`optionEnv:${option.name()}`);
|
|
1859
|
+
}
|
|
1860
|
+
}
|
|
1861
|
+
}
|
|
1862
|
+
});
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
/**
|
|
1866
|
+
* Apply any implied option values, if option is undefined or default value.
|
|
1867
|
+
*
|
|
1868
|
+
* @private
|
|
1869
|
+
*/
|
|
1870
|
+
_parseOptionsImplied() {
|
|
1871
|
+
const dualHelper = new DualOptions(this.options);
|
|
1872
|
+
const hasCustomOptionValue = (optionKey) => {
|
|
1873
|
+
return (
|
|
1874
|
+
this.getOptionValue(optionKey) !== undefined &&
|
|
1875
|
+
!['default', 'implied'].includes(this.getOptionValueSource(optionKey))
|
|
1876
|
+
);
|
|
1877
|
+
};
|
|
1878
|
+
this.options
|
|
1879
|
+
.filter(
|
|
1880
|
+
(option) =>
|
|
1881
|
+
option.implied !== undefined &&
|
|
1882
|
+
hasCustomOptionValue(option.attributeName()) &&
|
|
1883
|
+
dualHelper.valueFromOption(
|
|
1884
|
+
this.getOptionValue(option.attributeName()),
|
|
1885
|
+
option,
|
|
1886
|
+
),
|
|
1887
|
+
)
|
|
1888
|
+
.forEach((option) => {
|
|
1889
|
+
Object.keys(option.implied)
|
|
1890
|
+
.filter((impliedKey) => !hasCustomOptionValue(impliedKey))
|
|
1891
|
+
.forEach((impliedKey) => {
|
|
1892
|
+
this.setOptionValueWithSource(
|
|
1893
|
+
impliedKey,
|
|
1894
|
+
option.implied[impliedKey],
|
|
1895
|
+
'implied',
|
|
1896
|
+
);
|
|
1897
|
+
});
|
|
1898
|
+
});
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1901
|
+
/**
|
|
1902
|
+
* Argument `name` is missing.
|
|
1903
|
+
*
|
|
1904
|
+
* @param {string} name
|
|
1905
|
+
* @private
|
|
1906
|
+
*/
|
|
1907
|
+
|
|
1908
|
+
missingArgument(name) {
|
|
1909
|
+
const message = `error: missing required argument '${name}'`;
|
|
1910
|
+
this.error(message, { code: 'commander.missingArgument' });
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1913
|
+
/**
|
|
1914
|
+
* `Option` is missing an argument.
|
|
1915
|
+
*
|
|
1916
|
+
* @param {Option} option
|
|
1917
|
+
* @private
|
|
1918
|
+
*/
|
|
1919
|
+
|
|
1920
|
+
optionMissingArgument(option) {
|
|
1921
|
+
const message = `error: option '${option.flags}' argument missing`;
|
|
1922
|
+
this.error(message, { code: 'commander.optionMissingArgument' });
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
/**
|
|
1926
|
+
* `Option` does not have a value, and is a mandatory option.
|
|
1927
|
+
*
|
|
1928
|
+
* @param {Option} option
|
|
1929
|
+
* @private
|
|
1930
|
+
*/
|
|
1931
|
+
|
|
1932
|
+
missingMandatoryOptionValue(option) {
|
|
1933
|
+
const message = `error: required option '${option.flags}' not specified`;
|
|
1934
|
+
this.error(message, { code: 'commander.missingMandatoryOptionValue' });
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
/**
|
|
1938
|
+
* `Option` conflicts with another option.
|
|
1939
|
+
*
|
|
1940
|
+
* @param {Option} option
|
|
1941
|
+
* @param {Option} conflictingOption
|
|
1942
|
+
* @private
|
|
1943
|
+
*/
|
|
1944
|
+
_conflictingOption(option, conflictingOption) {
|
|
1945
|
+
// The calling code does not know whether a negated option is the source of the
|
|
1946
|
+
// value, so do some work to take an educated guess.
|
|
1947
|
+
const findBestOptionFromValue = (option) => {
|
|
1948
|
+
const optionKey = option.attributeName();
|
|
1949
|
+
const optionValue = this.getOptionValue(optionKey);
|
|
1950
|
+
const negativeOption = this.options.find(
|
|
1951
|
+
(target) => target.negate && optionKey === target.attributeName(),
|
|
1952
|
+
);
|
|
1953
|
+
const positiveOption = this.options.find(
|
|
1954
|
+
(target) => !target.negate && optionKey === target.attributeName(),
|
|
1955
|
+
);
|
|
1956
|
+
if (
|
|
1957
|
+
negativeOption &&
|
|
1958
|
+
((negativeOption.presetArg === undefined && optionValue === false) ||
|
|
1959
|
+
(negativeOption.presetArg !== undefined &&
|
|
1960
|
+
optionValue === negativeOption.presetArg))
|
|
1961
|
+
) {
|
|
1962
|
+
return negativeOption;
|
|
1963
|
+
}
|
|
1964
|
+
return positiveOption || option;
|
|
1965
|
+
};
|
|
1966
|
+
|
|
1967
|
+
const getErrorMessage = (option) => {
|
|
1968
|
+
const bestOption = findBestOptionFromValue(option);
|
|
1969
|
+
const optionKey = bestOption.attributeName();
|
|
1970
|
+
const source = this.getOptionValueSource(optionKey);
|
|
1971
|
+
if (source === 'env') {
|
|
1972
|
+
return `environment variable '${bestOption.envVar}'`;
|
|
1973
|
+
}
|
|
1974
|
+
return `option '${bestOption.flags}'`;
|
|
1975
|
+
};
|
|
1976
|
+
|
|
1977
|
+
const message = `error: ${getErrorMessage(option)} cannot be used with ${getErrorMessage(conflictingOption)}`;
|
|
1978
|
+
this.error(message, { code: 'commander.conflictingOption' });
|
|
1979
|
+
}
|
|
1980
|
+
|
|
1981
|
+
/**
|
|
1982
|
+
* Unknown option `flag`.
|
|
1983
|
+
*
|
|
1984
|
+
* @param {string} flag
|
|
1985
|
+
* @private
|
|
1986
|
+
*/
|
|
1987
|
+
|
|
1988
|
+
unknownOption(flag) {
|
|
1989
|
+
if (this._allowUnknownOption) return;
|
|
1990
|
+
let suggestion = '';
|
|
1991
|
+
|
|
1992
|
+
if (flag.startsWith('--') && this._showSuggestionAfterError) {
|
|
1993
|
+
// Looping to pick up the global options too
|
|
1994
|
+
let candidateFlags = [];
|
|
1995
|
+
// eslint-disable-next-line @typescript-eslint/no-this-alias
|
|
1996
|
+
let command = this;
|
|
1997
|
+
do {
|
|
1998
|
+
const moreFlags = command
|
|
1999
|
+
.createHelp()
|
|
2000
|
+
.visibleOptions(command)
|
|
2001
|
+
.filter((option) => option.long)
|
|
2002
|
+
.map((option) => option.long);
|
|
2003
|
+
candidateFlags = candidateFlags.concat(moreFlags);
|
|
2004
|
+
command = command.parent;
|
|
2005
|
+
} while (command && !command._enablePositionalOptions);
|
|
2006
|
+
suggestion = suggestSimilar(flag, candidateFlags);
|
|
2007
|
+
}
|
|
2008
|
+
|
|
2009
|
+
const message = `error: unknown option '${flag}'${suggestion}`;
|
|
2010
|
+
this.error(message, { code: 'commander.unknownOption' });
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
|
+
/**
|
|
2014
|
+
* Excess arguments, more than expected.
|
|
2015
|
+
*
|
|
2016
|
+
* @param {string[]} receivedArgs
|
|
2017
|
+
* @private
|
|
2018
|
+
*/
|
|
2019
|
+
|
|
2020
|
+
_excessArguments(receivedArgs) {
|
|
2021
|
+
if (this._allowExcessArguments) return;
|
|
2022
|
+
|
|
2023
|
+
const expected = this.registeredArguments.length;
|
|
2024
|
+
const s = expected === 1 ? '' : 's';
|
|
2025
|
+
const forSubcommand = this.parent ? ` for '${this.name()}'` : '';
|
|
2026
|
+
const message = `error: too many arguments${forSubcommand}. Expected ${expected} argument${s} but got ${receivedArgs.length}.`;
|
|
2027
|
+
this.error(message, { code: 'commander.excessArguments' });
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
/**
|
|
2031
|
+
* Unknown command.
|
|
2032
|
+
*
|
|
2033
|
+
* @private
|
|
2034
|
+
*/
|
|
2035
|
+
|
|
2036
|
+
unknownCommand() {
|
|
2037
|
+
const unknownName = this.args[0];
|
|
2038
|
+
let suggestion = '';
|
|
2039
|
+
|
|
2040
|
+
if (this._showSuggestionAfterError) {
|
|
2041
|
+
const candidateNames = [];
|
|
2042
|
+
this.createHelp()
|
|
2043
|
+
.visibleCommands(this)
|
|
2044
|
+
.forEach((command) => {
|
|
2045
|
+
candidateNames.push(command.name());
|
|
2046
|
+
// just visible alias
|
|
2047
|
+
if (command.alias()) candidateNames.push(command.alias());
|
|
2048
|
+
});
|
|
2049
|
+
suggestion = suggestSimilar(unknownName, candidateNames);
|
|
2050
|
+
}
|
|
2051
|
+
|
|
2052
|
+
const message = `error: unknown command '${unknownName}'${suggestion}`;
|
|
2053
|
+
this.error(message, { code: 'commander.unknownCommand' });
|
|
2054
|
+
}
|
|
2055
|
+
|
|
2056
|
+
/**
|
|
2057
|
+
* Get or set the program version.
|
|
2058
|
+
*
|
|
2059
|
+
* This method auto-registers the "-V, --version" option which will print the version number.
|
|
2060
|
+
*
|
|
2061
|
+
* You can optionally supply the flags and description to override the defaults.
|
|
2062
|
+
*
|
|
2063
|
+
* @param {string} [str]
|
|
2064
|
+
* @param {string} [flags]
|
|
2065
|
+
* @param {string} [description]
|
|
2066
|
+
* @return {(this | string | undefined)} `this` command for chaining, or version string if no arguments
|
|
2067
|
+
*/
|
|
2068
|
+
|
|
2069
|
+
version(str, flags, description) {
|
|
2070
|
+
if (str === undefined) return this._version;
|
|
2071
|
+
this._version = str;
|
|
2072
|
+
flags = flags || '-V, --version';
|
|
2073
|
+
description = description || 'output the version number';
|
|
2074
|
+
const versionOption = this.createOption(flags, description);
|
|
2075
|
+
this._versionOptionName = versionOption.attributeName();
|
|
2076
|
+
this._registerOption(versionOption);
|
|
2077
|
+
|
|
2078
|
+
this.on('option:' + versionOption.name(), () => {
|
|
2079
|
+
this._outputConfiguration.writeOut(`${str}\n`);
|
|
2080
|
+
this._exit(0, 'commander.version', str);
|
|
2081
|
+
});
|
|
2082
|
+
return this;
|
|
2083
|
+
}
|
|
2084
|
+
|
|
2085
|
+
/**
|
|
2086
|
+
* Set the description.
|
|
2087
|
+
*
|
|
2088
|
+
* @param {string} [str]
|
|
2089
|
+
* @param {object} [argsDescription]
|
|
2090
|
+
* @return {(string|Command)}
|
|
2091
|
+
*/
|
|
2092
|
+
description(str, argsDescription) {
|
|
2093
|
+
if (str === undefined && argsDescription === undefined)
|
|
2094
|
+
return this._description;
|
|
2095
|
+
this._description = str;
|
|
2096
|
+
if (argsDescription) {
|
|
2097
|
+
this._argsDescription = argsDescription;
|
|
2098
|
+
}
|
|
2099
|
+
return this;
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
/**
|
|
2103
|
+
* Set the summary. Used when listed as subcommand of parent.
|
|
2104
|
+
*
|
|
2105
|
+
* @param {string} [str]
|
|
2106
|
+
* @return {(string|Command)}
|
|
2107
|
+
*/
|
|
2108
|
+
summary(str) {
|
|
2109
|
+
if (str === undefined) return this._summary;
|
|
2110
|
+
this._summary = str;
|
|
2111
|
+
return this;
|
|
2112
|
+
}
|
|
2113
|
+
|
|
2114
|
+
/**
|
|
2115
|
+
* Set an alias for the command.
|
|
2116
|
+
*
|
|
2117
|
+
* You may call more than once to add multiple aliases. Only the first alias is shown in the auto-generated help.
|
|
2118
|
+
*
|
|
2119
|
+
* @param {string} [alias]
|
|
2120
|
+
* @return {(string|Command)}
|
|
2121
|
+
*/
|
|
2122
|
+
|
|
2123
|
+
alias(alias) {
|
|
2124
|
+
if (alias === undefined) return this._aliases[0]; // just return first, for backwards compatibility
|
|
2125
|
+
|
|
2126
|
+
/** @type {Command} */
|
|
2127
|
+
// eslint-disable-next-line @typescript-eslint/no-this-alias
|
|
2128
|
+
let command = this;
|
|
2129
|
+
if (
|
|
2130
|
+
this.commands.length !== 0 &&
|
|
2131
|
+
this.commands[this.commands.length - 1]._executableHandler
|
|
2132
|
+
) {
|
|
2133
|
+
// assume adding alias for last added executable subcommand, rather than this
|
|
2134
|
+
command = this.commands[this.commands.length - 1];
|
|
2135
|
+
}
|
|
2136
|
+
|
|
2137
|
+
if (alias === command._name)
|
|
2138
|
+
throw new Error("Command alias can't be the same as its name");
|
|
2139
|
+
const matchingCommand = this.parent?._findCommand(alias);
|
|
2140
|
+
if (matchingCommand) {
|
|
2141
|
+
// c.f. _registerCommand
|
|
2142
|
+
const existingCmd = [matchingCommand.name()]
|
|
2143
|
+
.concat(matchingCommand.aliases())
|
|
2144
|
+
.join('|');
|
|
2145
|
+
throw new Error(
|
|
2146
|
+
`cannot add alias '${alias}' to command '${this.name()}' as already have command '${existingCmd}'`,
|
|
2147
|
+
);
|
|
2148
|
+
}
|
|
2149
|
+
|
|
2150
|
+
command._aliases.push(alias);
|
|
2151
|
+
return this;
|
|
2152
|
+
}
|
|
2153
|
+
|
|
2154
|
+
/**
|
|
2155
|
+
* Set aliases for the command.
|
|
2156
|
+
*
|
|
2157
|
+
* Only the first alias is shown in the auto-generated help.
|
|
2158
|
+
*
|
|
2159
|
+
* @param {string[]} [aliases]
|
|
2160
|
+
* @return {(string[]|Command)}
|
|
2161
|
+
*/
|
|
2162
|
+
|
|
2163
|
+
aliases(aliases) {
|
|
2164
|
+
// Getter for the array of aliases is the main reason for having aliases() in addition to alias().
|
|
2165
|
+
if (aliases === undefined) return this._aliases;
|
|
2166
|
+
|
|
2167
|
+
aliases.forEach((alias) => this.alias(alias));
|
|
2168
|
+
return this;
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
/**
|
|
2172
|
+
* Set / get the command usage `str`.
|
|
2173
|
+
*
|
|
2174
|
+
* @param {string} [str]
|
|
2175
|
+
* @return {(string|Command)}
|
|
2176
|
+
*/
|
|
2177
|
+
|
|
2178
|
+
usage(str) {
|
|
2179
|
+
if (str === undefined) {
|
|
2180
|
+
if (this._usage) return this._usage;
|
|
2181
|
+
|
|
2182
|
+
const args = this.registeredArguments.map((arg) => {
|
|
2183
|
+
return humanReadableArgName(arg);
|
|
2184
|
+
});
|
|
2185
|
+
return []
|
|
2186
|
+
.concat(
|
|
2187
|
+
this.options.length || this._helpOption !== null ? '[options]' : [],
|
|
2188
|
+
this.commands.length ? '[command]' : [],
|
|
2189
|
+
this.registeredArguments.length ? args : [],
|
|
2190
|
+
)
|
|
2191
|
+
.join(' ');
|
|
2192
|
+
}
|
|
2193
|
+
|
|
2194
|
+
this._usage = str;
|
|
2195
|
+
return this;
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2198
|
+
/**
|
|
2199
|
+
* Get or set the name of the command.
|
|
2200
|
+
*
|
|
2201
|
+
* @param {string} [str]
|
|
2202
|
+
* @return {(string|Command)}
|
|
2203
|
+
*/
|
|
2204
|
+
|
|
2205
|
+
name(str) {
|
|
2206
|
+
if (str === undefined) return this._name;
|
|
2207
|
+
this._name = str;
|
|
2208
|
+
return this;
|
|
2209
|
+
}
|
|
2210
|
+
|
|
2211
|
+
/**
|
|
2212
|
+
* Set the name of the command from script filename, such as process.argv[1],
|
|
2213
|
+
* or require.main.filename, or __filename.
|
|
2214
|
+
*
|
|
2215
|
+
* (Used internally and public although not documented in README.)
|
|
2216
|
+
*
|
|
2217
|
+
* @example
|
|
2218
|
+
* program.nameFromFilename(require.main.filename);
|
|
2219
|
+
*
|
|
2220
|
+
* @param {string} filename
|
|
2221
|
+
* @return {Command}
|
|
2222
|
+
*/
|
|
2223
|
+
|
|
2224
|
+
nameFromFilename(filename) {
|
|
2225
|
+
this._name = path.basename(filename, path.extname(filename));
|
|
2226
|
+
|
|
2227
|
+
return this;
|
|
2228
|
+
}
|
|
2229
|
+
|
|
2230
|
+
/**
|
|
2231
|
+
* Get or set the directory for searching for executable subcommands of this command.
|
|
2232
|
+
*
|
|
2233
|
+
* @example
|
|
2234
|
+
* program.executableDir(__dirname);
|
|
2235
|
+
* // or
|
|
2236
|
+
* program.executableDir('subcommands');
|
|
2237
|
+
*
|
|
2238
|
+
* @param {string} [path]
|
|
2239
|
+
* @return {(string|null|Command)}
|
|
2240
|
+
*/
|
|
2241
|
+
|
|
2242
|
+
executableDir(path) {
|
|
2243
|
+
if (path === undefined) return this._executableDir;
|
|
2244
|
+
this._executableDir = path;
|
|
2245
|
+
return this;
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2248
|
+
/**
|
|
2249
|
+
* Return program help documentation.
|
|
2250
|
+
*
|
|
2251
|
+
* @param {{ error: boolean }} [contextOptions] - pass {error:true} to wrap for stderr instead of stdout
|
|
2252
|
+
* @return {string}
|
|
2253
|
+
*/
|
|
2254
|
+
|
|
2255
|
+
helpInformation(contextOptions) {
|
|
2256
|
+
const helper = this.createHelp();
|
|
2257
|
+
if (helper.helpWidth === undefined) {
|
|
2258
|
+
helper.helpWidth =
|
|
2259
|
+
contextOptions && contextOptions.error
|
|
2260
|
+
? this._outputConfiguration.getErrHelpWidth()
|
|
2261
|
+
: this._outputConfiguration.getOutHelpWidth();
|
|
2262
|
+
}
|
|
2263
|
+
return helper.formatHelp(this, helper);
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2266
|
+
/**
|
|
2267
|
+
* @private
|
|
2268
|
+
*/
|
|
2269
|
+
|
|
2270
|
+
_getHelpContext(contextOptions) {
|
|
2271
|
+
contextOptions = contextOptions || {};
|
|
2272
|
+
const context = { error: !!contextOptions.error };
|
|
2273
|
+
let write;
|
|
2274
|
+
if (context.error) {
|
|
2275
|
+
write = (arg) => this._outputConfiguration.writeErr(arg);
|
|
2276
|
+
} else {
|
|
2277
|
+
write = (arg) => this._outputConfiguration.writeOut(arg);
|
|
2278
|
+
}
|
|
2279
|
+
context.write = contextOptions.write || write;
|
|
2280
|
+
context.command = this;
|
|
2281
|
+
return context;
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2284
|
+
/**
|
|
2285
|
+
* Output help information for this command.
|
|
2286
|
+
*
|
|
2287
|
+
* Outputs built-in help, and custom text added using `.addHelpText()`.
|
|
2288
|
+
*
|
|
2289
|
+
* @param {{ error: boolean } | Function} [contextOptions] - pass {error:true} to write to stderr instead of stdout
|
|
2290
|
+
*/
|
|
2291
|
+
|
|
2292
|
+
outputHelp(contextOptions) {
|
|
2293
|
+
let deprecatedCallback;
|
|
2294
|
+
if (typeof contextOptions === 'function') {
|
|
2295
|
+
deprecatedCallback = contextOptions;
|
|
2296
|
+
contextOptions = undefined;
|
|
2297
|
+
}
|
|
2298
|
+
const context = this._getHelpContext(contextOptions);
|
|
2299
|
+
|
|
2300
|
+
this._getCommandAndAncestors()
|
|
2301
|
+
.reverse()
|
|
2302
|
+
.forEach((command) => command.emit('beforeAllHelp', context));
|
|
2303
|
+
this.emit('beforeHelp', context);
|
|
2304
|
+
|
|
2305
|
+
let helpInformation = this.helpInformation(context);
|
|
2306
|
+
if (deprecatedCallback) {
|
|
2307
|
+
helpInformation = deprecatedCallback(helpInformation);
|
|
2308
|
+
if (
|
|
2309
|
+
typeof helpInformation !== 'string' &&
|
|
2310
|
+
!Buffer.isBuffer(helpInformation)
|
|
2311
|
+
) {
|
|
2312
|
+
throw new Error('outputHelp callback must return a string or a Buffer');
|
|
2313
|
+
}
|
|
2314
|
+
}
|
|
2315
|
+
context.write(helpInformation);
|
|
2316
|
+
|
|
2317
|
+
if (this._getHelpOption()?.long) {
|
|
2318
|
+
this.emit(this._getHelpOption().long); // deprecated
|
|
2319
|
+
}
|
|
2320
|
+
this.emit('afterHelp', context);
|
|
2321
|
+
this._getCommandAndAncestors().forEach((command) =>
|
|
2322
|
+
command.emit('afterAllHelp', context),
|
|
2323
|
+
);
|
|
2324
|
+
}
|
|
2325
|
+
|
|
2326
|
+
/**
|
|
2327
|
+
* You can pass in flags and a description to customise the built-in help option.
|
|
2328
|
+
* Pass in false to disable the built-in help option.
|
|
2329
|
+
*
|
|
2330
|
+
* @example
|
|
2331
|
+
* program.helpOption('-?, --help' 'show help'); // customise
|
|
2332
|
+
* program.helpOption(false); // disable
|
|
2333
|
+
*
|
|
2334
|
+
* @param {(string | boolean)} flags
|
|
2335
|
+
* @param {string} [description]
|
|
2336
|
+
* @return {Command} `this` command for chaining
|
|
2337
|
+
*/
|
|
2338
|
+
|
|
2339
|
+
helpOption(flags, description) {
|
|
2340
|
+
// Support disabling built-in help option.
|
|
2341
|
+
if (typeof flags === 'boolean') {
|
|
2342
|
+
if (flags) {
|
|
2343
|
+
this._helpOption = this._helpOption ?? undefined; // preserve existing option
|
|
2344
|
+
} else {
|
|
2345
|
+
this._helpOption = null; // disable
|
|
2346
|
+
}
|
|
2347
|
+
return this;
|
|
2348
|
+
}
|
|
2349
|
+
|
|
2350
|
+
// Customise flags and description.
|
|
2351
|
+
flags = flags ?? '-h, --help';
|
|
2352
|
+
description = description ?? 'display help for command';
|
|
2353
|
+
this._helpOption = this.createOption(flags, description);
|
|
2354
|
+
|
|
2355
|
+
return this;
|
|
2356
|
+
}
|
|
2357
|
+
|
|
2358
|
+
/**
|
|
2359
|
+
* Lazy create help option.
|
|
2360
|
+
* Returns null if has been disabled with .helpOption(false).
|
|
2361
|
+
*
|
|
2362
|
+
* @returns {(Option | null)} the help option
|
|
2363
|
+
* @package
|
|
2364
|
+
*/
|
|
2365
|
+
_getHelpOption() {
|
|
2366
|
+
// Lazy create help option on demand.
|
|
2367
|
+
if (this._helpOption === undefined) {
|
|
2368
|
+
this.helpOption(undefined, undefined);
|
|
2369
|
+
}
|
|
2370
|
+
return this._helpOption;
|
|
2371
|
+
}
|
|
2372
|
+
|
|
2373
|
+
/**
|
|
2374
|
+
* Supply your own option to use for the built-in help option.
|
|
2375
|
+
* This is an alternative to using helpOption() to customise the flags and description etc.
|
|
2376
|
+
*
|
|
2377
|
+
* @param {Option} option
|
|
2378
|
+
* @return {Command} `this` command for chaining
|
|
2379
|
+
*/
|
|
2380
|
+
addHelpOption(option) {
|
|
2381
|
+
this._helpOption = option;
|
|
2382
|
+
return this;
|
|
2383
|
+
}
|
|
2384
|
+
|
|
2385
|
+
/**
|
|
2386
|
+
* Output help information and exit.
|
|
2387
|
+
*
|
|
2388
|
+
* Outputs built-in help, and custom text added using `.addHelpText()`.
|
|
2389
|
+
*
|
|
2390
|
+
* @param {{ error: boolean }} [contextOptions] - pass {error:true} to write to stderr instead of stdout
|
|
2391
|
+
*/
|
|
2392
|
+
|
|
2393
|
+
help(contextOptions) {
|
|
2394
|
+
this.outputHelp(contextOptions);
|
|
2395
|
+
let exitCode = process.exitCode || 0;
|
|
2396
|
+
if (
|
|
2397
|
+
exitCode === 0 &&
|
|
2398
|
+
contextOptions &&
|
|
2399
|
+
typeof contextOptions !== 'function' &&
|
|
2400
|
+
contextOptions.error
|
|
2401
|
+
) {
|
|
2402
|
+
exitCode = 1;
|
|
2403
|
+
}
|
|
2404
|
+
// message: do not have all displayed text available so only passing placeholder.
|
|
2405
|
+
this._exit(exitCode, 'commander.help', '(outputHelp)');
|
|
2406
|
+
}
|
|
2407
|
+
|
|
2408
|
+
/**
|
|
2409
|
+
* Add additional text to be displayed with the built-in help.
|
|
2410
|
+
*
|
|
2411
|
+
* Position is 'before' or 'after' to affect just this command,
|
|
2412
|
+
* and 'beforeAll' or 'afterAll' to affect this command and all its subcommands.
|
|
2413
|
+
*
|
|
2414
|
+
* @param {string} position - before or after built-in help
|
|
2415
|
+
* @param {(string | Function)} text - string to add, or a function returning a string
|
|
2416
|
+
* @return {Command} `this` command for chaining
|
|
2417
|
+
*/
|
|
2418
|
+
addHelpText(position, text) {
|
|
2419
|
+
const allowedValues = ['beforeAll', 'before', 'after', 'afterAll'];
|
|
2420
|
+
if (!allowedValues.includes(position)) {
|
|
2421
|
+
throw new Error(`Unexpected value for position to addHelpText.
|
|
2422
|
+
Expecting one of '${allowedValues.join("', '")}'`);
|
|
2423
|
+
}
|
|
2424
|
+
const helpEvent = `${position}Help`;
|
|
2425
|
+
this.on(helpEvent, (context) => {
|
|
2426
|
+
let helpStr;
|
|
2427
|
+
if (typeof text === 'function') {
|
|
2428
|
+
helpStr = text({ error: context.error, command: context.command });
|
|
2429
|
+
} else {
|
|
2430
|
+
helpStr = text;
|
|
2431
|
+
}
|
|
2432
|
+
// Ignore falsy value when nothing to output.
|
|
2433
|
+
if (helpStr) {
|
|
2434
|
+
context.write(`${helpStr}\n`);
|
|
2435
|
+
}
|
|
2436
|
+
});
|
|
2437
|
+
return this;
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
/**
|
|
2441
|
+
* Output help information if help flags specified
|
|
2442
|
+
*
|
|
2443
|
+
* @param {Array} args - array of options to search for help flags
|
|
2444
|
+
* @private
|
|
2445
|
+
*/
|
|
2446
|
+
|
|
2447
|
+
_outputHelpIfRequested(args) {
|
|
2448
|
+
const helpOption = this._getHelpOption();
|
|
2449
|
+
const helpRequested = helpOption && args.find((arg) => helpOption.is(arg));
|
|
2450
|
+
if (helpRequested) {
|
|
2451
|
+
this.outputHelp();
|
|
2452
|
+
// (Do not have all displayed text available so only passing placeholder.)
|
|
2453
|
+
this._exit(0, 'commander.helpDisplayed', '(outputHelp)');
|
|
2454
|
+
}
|
|
2455
|
+
}
|
|
2456
|
+
}
|
|
2457
|
+
|
|
2458
|
+
/**
|
|
2459
|
+
* Scan arguments and increment port number for inspect calls (to avoid conflicts when spawning new command).
|
|
2460
|
+
*
|
|
2461
|
+
* @param {string[]} args - array of arguments from node.execArgv
|
|
2462
|
+
* @returns {string[]}
|
|
2463
|
+
* @private
|
|
2464
|
+
*/
|
|
2465
|
+
|
|
2466
|
+
function incrementNodeInspectorPort(args) {
|
|
2467
|
+
// Testing for these options:
|
|
2468
|
+
// --inspect[=[host:]port]
|
|
2469
|
+
// --inspect-brk[=[host:]port]
|
|
2470
|
+
// --inspect-port=[host:]port
|
|
2471
|
+
return args.map((arg) => {
|
|
2472
|
+
if (!arg.startsWith('--inspect')) {
|
|
2473
|
+
return arg;
|
|
2474
|
+
}
|
|
2475
|
+
let debugOption;
|
|
2476
|
+
let debugHost = '127.0.0.1';
|
|
2477
|
+
let debugPort = '9229';
|
|
2478
|
+
let match;
|
|
2479
|
+
if ((match = arg.match(/^(--inspect(-brk)?)$/)) !== null) {
|
|
2480
|
+
// e.g. --inspect
|
|
2481
|
+
debugOption = match[1];
|
|
2482
|
+
} else if (
|
|
2483
|
+
(match = arg.match(/^(--inspect(-brk|-port)?)=([^:]+)$/)) !== null
|
|
2484
|
+
) {
|
|
2485
|
+
debugOption = match[1];
|
|
2486
|
+
if (/^\d+$/.test(match[3])) {
|
|
2487
|
+
// e.g. --inspect=1234
|
|
2488
|
+
debugPort = match[3];
|
|
2489
|
+
} else {
|
|
2490
|
+
// e.g. --inspect=localhost
|
|
2491
|
+
debugHost = match[3];
|
|
2492
|
+
}
|
|
2493
|
+
} else if (
|
|
2494
|
+
(match = arg.match(/^(--inspect(-brk|-port)?)=([^:]+):(\d+)$/)) !== null
|
|
2495
|
+
) {
|
|
2496
|
+
// e.g. --inspect=localhost:1234
|
|
2497
|
+
debugOption = match[1];
|
|
2498
|
+
debugHost = match[3];
|
|
2499
|
+
debugPort = match[4];
|
|
2500
|
+
}
|
|
2501
|
+
|
|
2502
|
+
if (debugOption && debugPort !== '0') {
|
|
2503
|
+
return `${debugOption}=${debugHost}:${parseInt(debugPort) + 1}`;
|
|
2504
|
+
}
|
|
2505
|
+
return arg;
|
|
2506
|
+
});
|
|
2507
|
+
}
|
|
2508
|
+
|
|
2509
|
+
exports.Command = Command;
|