@psnext/slingcli 2.4.20260520-3 → 2.4.20260520-4
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/node_modules/@aws-sdk/client-bedrock-runtime/package.json +5 -5
- package/node_modules/@aws-sdk/token-providers/package.json +3 -3
- package/node_modules/@earendil-works/pi-agent-core/dist/agent-loop.js +23 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/agent.js +1 -1
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/agent-harness.js +557 -385
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/branch-summarization.js +13 -82
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/compaction.js +61 -144
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/utils.js +14 -36
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/env/nodejs.js +234 -96
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/prompt-templates.js +85 -55
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-repo.js +101 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/jsonl-storage.js +231 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-repo.js +42 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/memory-storage.js +114 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo-utils.js +39 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/session.js +3 -2
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/uuid.js +50 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/skills.js +125 -73
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/types.js +86 -8
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/shell-output.js +85 -56
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/truncate.js +103 -18
- package/node_modules/@earendil-works/pi-agent-core/dist/index.js +4 -4
- package/node_modules/@earendil-works/pi-agent-core/dist/node.js +3 -0
- package/node_modules/@earendil-works/pi-agent-core/package.json +23 -10
- package/node_modules/@earendil-works/pi-ai/dist/env-api-keys.js +11 -3
- package/node_modules/@earendil-works/pi-ai/dist/models.generated.js +117 -353
- package/node_modules/@earendil-works/pi-ai/dist/providers/amazon-bedrock.js +35 -32
- package/node_modules/@earendil-works/pi-ai/dist/providers/anthropic.js +5 -2
- package/node_modules/@earendil-works/pi-ai/dist/providers/azure-openai-responses.js +19 -2
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-codex-responses.js +35 -4
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-completions.js +24 -10
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-prompt-cache.js +10 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/openai-responses.js +19 -2
- package/node_modules/@earendil-works/pi-ai/dist/providers/register-builtins.js +13 -2
- package/node_modules/@earendil-works/pi-ai/dist/providers/simple-options.js +6 -4
- package/node_modules/@earendil-works/pi-ai/dist/utils/event-stream.js +2 -2
- package/node_modules/@earendil-works/pi-ai/dist/utils/node-http-proxy.js +97 -0
- package/node_modules/@earendil-works/pi-ai/dist/utils/oauth/openai-codex.js +1 -1
- package/node_modules/@earendil-works/pi-ai/dist/utils/overflow.js +3 -1
- package/node_modules/@earendil-works/pi-ai/package.json +15 -20
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli/config-selector.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/cli.js +4 -6
- package/node_modules/@earendil-works/pi-coding-agent/dist/config.js +45 -22
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session-runtime.js +4 -5
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/agent-session.js +127 -151
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/auth-storage.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/bash-executor.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/compaction.js +25 -15
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/export-html/template.js +17 -3
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/http-dispatcher.js +48 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/model-registry.js +2 -2
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/package-manager.js +71 -33
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/prompt-templates.js +6 -4
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/sdk.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/session-manager.js +39 -9
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/settings-manager.js +20 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/skills.js +2 -5
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/system-prompt.js +7 -4
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/bash.js +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/render-utils.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/index.js +1 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/main.js +7 -11
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/bash-execution.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/config-selector.js +7 -4
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/countdown-timer.js +2 -2
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-editor.js +14 -6
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/extension-selector.js +6 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/footer.js +2 -2
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/login-dialog.js +2 -2
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/settings-selector.js +15 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/interactive-mode.js +99 -17
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/theme/dark.json +5 -4
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/theme/light.json +5 -4
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/theme/theme.js +83 -41
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/rpc/rpc-client.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/package-manager-cli.js +62 -7
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/ansi.js +52 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/child-process.js +9 -7
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/html.js +40 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/mime.js +59 -16
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/paths.js +16 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/shell.js +6 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/syntax-highlight.js +118 -0
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/tools-manager.js +80 -8
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/version-check.js +9 -4
- package/node_modules/@earendil-works/pi-coding-agent/dist/utils/windows-self-update.js +77 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/LICENSE +21 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/Agent.md +84 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/BalancedPool.md +99 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/CacheStorage.md +30 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/CacheStore.md +164 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/Client.md +287 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/ClientStats.md +27 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/Connector.md +115 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/ContentType.md +57 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/Cookies.md +101 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/Debug.md +62 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/DiagnosticsChannel.md +315 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/Dispatcher.md +1427 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +159 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/Errors.md +49 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/EventSource.md +45 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/Fetch.md +60 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/GlobalInstallation.md +141 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/H2CClient.md +263 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/MockAgent.md +603 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/MockCallHistory.md +197 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/MockCallHistoryLog.md +43 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/MockClient.md +81 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/MockErrors.md +12 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/MockPool.md +555 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/Pool.md +84 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/PoolStats.md +35 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/ProxyAgent.md +229 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/RedirectHandler.md +98 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/RetryAgent.md +49 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/RetryHandler.md +116 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/RoundRobinPool.md +145 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/SnapshotAgent.md +639 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/Socks5ProxyAgent.md +274 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/Util.md +25 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/WebSocket.md +141 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/api/api-lifecycle.md +91 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/best-practices/client-certificate.md +64 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/best-practices/crawling.md +58 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/best-practices/migrating-from-v7-to-v8.md +231 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/best-practices/mocking-request.md +190 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/best-practices/proxy.md +127 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/best-practices/undici-vs-builtin-fetch.md +224 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/docs/docs/best-practices/writing-tests.md +63 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/index-fetch.js +65 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/index.js +236 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/api/abort-signal.js +59 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/api/api-connect.js +112 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/api/api-pipeline.js +265 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/api/api-request.js +238 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/api/api-stream.js +270 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/api/api-upgrade.js +121 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/api/index.js +7 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/api/readable.js +581 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/cache/memory-cache-store.js +234 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/cache/sqlite-cache-store.js +463 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/core/connect.js +153 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/core/constants.js +120 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/core/diagnostics.js +227 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/core/errors.js +477 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/core/request.js +535 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/core/socks5-client.js +422 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/core/socks5-utils.js +212 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/core/symbols.js +76 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/core/tree.js +160 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/core/util.js +1019 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/agent.js +172 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/balanced-pool.js +214 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/client-h1.js +1669 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/client-h2.js +1326 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/client.js +666 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/dispatcher-base.js +184 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/dispatcher.js +44 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/dispatcher1-wrapper.js +107 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +146 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/fixed-queue.js +135 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/h2c-client.js +51 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/pool-base.js +232 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/pool.js +143 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/proxy-agent.js +343 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/retry-agent.js +35 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/round-robin-pool.js +159 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/dispatcher/socks5-proxy-agent.js +264 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/encoding/index.js +33 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/global.js +62 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/handler/cache-handler.js +586 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/handler/cache-revalidation-handler.js +124 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/handler/decorator-handler.js +66 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/handler/deduplication-handler.js +460 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/handler/redirect-handler.js +192 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/handler/retry-handler.js +407 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/interceptor/cache.js +508 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/interceptor/decompress.js +285 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/interceptor/deduplicate.js +117 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/interceptor/dns.js +571 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/interceptor/dump.js +112 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/interceptor/redirect.js +21 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/interceptor/response-error.js +95 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/interceptor/retry.js +19 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/llhttp/constants.js +531 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/llhttp/llhttp-wasm.js +15 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +15 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/llhttp/utils.js +12 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/mock/mock-agent.js +232 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/mock/mock-call-history.js +248 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/mock/mock-client.js +68 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/mock/mock-errors.js +29 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/mock/mock-interceptor.js +209 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/mock/mock-pool.js +68 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/mock/mock-symbols.js +32 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/mock/mock-utils.js +501 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/mock/pending-interceptors-formatter.js +43 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/mock/snapshot-agent.js +363 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/mock/snapshot-recorder.js +623 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/mock/snapshot-utils.js +158 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/util/cache.js +408 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/util/date.js +653 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/util/runtime-features.js +93 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/util/stats.js +32 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/util/timers.js +425 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/cache/cache.js +862 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/cache/cachestorage.js +152 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/cache/util.js +45 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/cookies/constants.js +12 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/cookies/index.js +199 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/cookies/parse.js +322 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/cookies/util.js +282 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/eventsource/eventsource-stream.js +494 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/eventsource/eventsource.js +501 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/eventsource/util.js +29 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/fetch/LICENSE +21 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/fetch/body.js +503 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/fetch/constants.js +131 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/fetch/data-url.js +596 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/fetch/formdata-parser.js +586 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/fetch/formdata.js +278 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/fetch/global.js +40 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/fetch/headers.js +719 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/fetch/index.js +2403 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/fetch/request.js +1115 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/fetch/response.js +641 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/fetch/util.js +1522 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/infra/index.js +229 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/subresource-integrity/Readme.md +9 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/subresource-integrity/subresource-integrity.js +307 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/webidl/index.js +1004 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/websocket/connection.js +329 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/websocket/constants.js +126 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/websocket/events.js +331 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/websocket/frame.js +127 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/websocket/permessage-deflate.js +100 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/websocket/receiver.js +490 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/websocket/sender.js +109 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/websocket/stream/websocketerror.js +104 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/websocket/stream/websocketstream.js +491 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/websocket/util.js +347 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/lib/web/websocket/websocket.js +756 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/package.json +152 -0
- package/node_modules/@earendil-works/pi-coding-agent/node_modules/undici/scripts/strip-comments.js +10 -0
- package/node_modules/@earendil-works/pi-coding-agent/npm-shrinkwrap.json +1803 -0
- package/node_modules/@earendil-works/pi-coding-agent/package.json +34 -36
- package/node_modules/@earendil-works/pi-tui/dist/components/image.js +27 -14
- package/node_modules/@earendil-works/pi-tui/dist/components/loader.js +4 -4
- package/node_modules/@earendil-works/pi-tui/dist/components/markdown.js +11 -5
- package/node_modules/@earendil-works/pi-tui/dist/stdin-buffer.js +22 -0
- package/node_modules/@earendil-works/pi-tui/dist/terminal-image.js +27 -15
- package/node_modules/@earendil-works/pi-tui/package.json +9 -12
- package/node_modules/cross-spawn/LICENSE +21 -0
- package/node_modules/cross-spawn/README.md +89 -0
- package/node_modules/cross-spawn/index.js +39 -0
- package/node_modules/cross-spawn/lib/enoent.js +59 -0
- package/node_modules/cross-spawn/lib/parse.js +91 -0
- package/node_modules/cross-spawn/lib/util/escape.js +47 -0
- package/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
- package/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
- package/node_modules/cross-spawn/package.json +73 -0
- package/node_modules/isexe/.npmignore +2 -0
- package/node_modules/isexe/README.md +51 -0
- package/node_modules/isexe/index.js +57 -0
- package/node_modules/isexe/mode.js +41 -0
- package/node_modules/isexe/package.json +31 -0
- package/node_modules/isexe/test/basic.js +221 -0
- package/node_modules/isexe/windows.js +42 -0
- package/node_modules/path-key/index.d.ts +40 -0
- package/node_modules/path-key/index.js +16 -0
- package/node_modules/path-key/package.json +39 -0
- package/node_modules/path-key/readme.md +61 -0
- package/node_modules/shebang-command/index.js +19 -0
- package/node_modules/shebang-command/license +9 -0
- package/node_modules/shebang-command/package.json +34 -0
- package/node_modules/shebang-command/readme.md +34 -0
- package/node_modules/shebang-regex/index.d.ts +22 -0
- package/node_modules/shebang-regex/index.js +2 -0
- package/node_modules/shebang-regex/package.json +35 -0
- package/node_modules/shebang-regex/readme.md +33 -0
- package/node_modules/which/README.md +54 -0
- package/node_modules/which/bin/node-which +52 -0
- package/node_modules/which/package.json +43 -0
- package/node_modules/which/which.js +125 -0
- package/package.json +6 -6
- package/slingshot/index.js +259 -255
- package/node_modules/@borewit/text-codec/LICENSE.txt +0 -9
- package/node_modules/@borewit/text-codec/README.md +0 -87
- package/node_modules/@borewit/text-codec/lib/index.d.ts +0 -6
- package/node_modules/@borewit/text-codec/lib/index.js +0 -380
- package/node_modules/@borewit/text-codec/package.json +0 -70
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/execution-env.js +0 -3
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/jsonl.js +0 -92
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/memory.js +0 -42
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/shared.js +0 -31
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/jsonl.js +0 -170
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/memory.js +0 -90
- package/node_modules/@tokenizer/inflate/LICENSE +0 -15
- package/node_modules/@tokenizer/inflate/README.md +0 -114
- package/node_modules/@tokenizer/inflate/lib/GzipHandler.d.ts +0 -6
- package/node_modules/@tokenizer/inflate/lib/GzipHandler.js +0 -19
- package/node_modules/@tokenizer/inflate/lib/ZipHandler.d.ts +0 -26
- package/node_modules/@tokenizer/inflate/lib/ZipHandler.js +0 -233
- package/node_modules/@tokenizer/inflate/lib/ZipToken.d.ts +0 -94
- package/node_modules/@tokenizer/inflate/lib/ZipToken.js +0 -117
- package/node_modules/@tokenizer/inflate/lib/index.d.ts +0 -3
- package/node_modules/@tokenizer/inflate/lib/index.js +0 -2
- package/node_modules/@tokenizer/inflate/package.json +0 -76
- package/node_modules/@tokenizer/token/README.md +0 -19
- package/node_modules/@tokenizer/token/index.d.ts +0 -30
- package/node_modules/@tokenizer/token/package.json +0 -33
- package/node_modules/@tootallnate/quickjs-emscripten/LICENSE +0 -21
- package/node_modules/@tootallnate/quickjs-emscripten/README.md +0 -597
- package/node_modules/@tootallnate/quickjs-emscripten/c/interface.c +0 -819
- package/node_modules/@tootallnate/quickjs-emscripten/dist/asyncify-helpers.d.ts +0 -24
- package/node_modules/@tootallnate/quickjs-emscripten/dist/asyncify-helpers.js +0 -53
- package/node_modules/@tootallnate/quickjs-emscripten/dist/asyncify-helpers.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/context-asyncify.d.ts +0 -48
- package/node_modules/@tootallnate/quickjs-emscripten/dist/context-asyncify.js +0 -58
- package/node_modules/@tootallnate/quickjs-emscripten/dist/context-asyncify.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/context.d.ts +0 -371
- package/node_modules/@tootallnate/quickjs-emscripten/dist/context.js +0 -691
- package/node_modules/@tootallnate/quickjs-emscripten/dist/context.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/debug.d.ts +0 -5
- package/node_modules/@tootallnate/quickjs-emscripten/dist/debug.js +0 -6
- package/node_modules/@tootallnate/quickjs-emscripten/dist/debug.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/deferred-promise.d.ts +0 -75
- package/node_modules/@tootallnate/quickjs-emscripten/dist/deferred-promise.js +0 -96
- package/node_modules/@tootallnate/quickjs-emscripten/dist/deferred-promise.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/emscripten-types.d.ts +0 -97
- package/node_modules/@tootallnate/quickjs-emscripten/dist/emscripten-types.js +0 -15
- package/node_modules/@tootallnate/quickjs-emscripten/dist/emscripten-types.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/errors.d.ts +0 -28
- package/node_modules/@tootallnate/quickjs-emscripten/dist/errors.js +0 -58
- package/node_modules/@tootallnate/quickjs-emscripten/dist/errors.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/esmHelpers.d.ts +0 -9
- package/node_modules/@tootallnate/quickjs-emscripten/dist/esmHelpers.js +0 -19
- package/node_modules/@tootallnate/quickjs-emscripten/dist/esmHelpers.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/generated/emscripten-module.WASM_RELEASE_SYNC.d.ts +0 -5
- package/node_modules/@tootallnate/quickjs-emscripten/dist/generated/emscripten-module.WASM_RELEASE_SYNC.js +0 -387
- package/node_modules/@tootallnate/quickjs-emscripten/dist/generated/emscripten-module.WASM_RELEASE_SYNC.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/generated/ffi.WASM_RELEASE_SYNC.d.ts +0 -67
- package/node_modules/@tootallnate/quickjs-emscripten/dist/generated/ffi.WASM_RELEASE_SYNC.js +0 -71
- package/node_modules/@tootallnate/quickjs-emscripten/dist/generated/ffi.WASM_RELEASE_SYNC.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/index.d.ts +0 -75
- package/node_modules/@tootallnate/quickjs-emscripten/dist/index.js +0 -128
- package/node_modules/@tootallnate/quickjs-emscripten/dist/index.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/lifetime.d.ts +0 -115
- package/node_modules/@tootallnate/quickjs-emscripten/dist/lifetime.js +0 -227
- package/node_modules/@tootallnate/quickjs-emscripten/dist/lifetime.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/memory.d.ts +0 -18
- package/node_modules/@tootallnate/quickjs-emscripten/dist/memory.js +0 -41
- package/node_modules/@tootallnate/quickjs-emscripten/dist/memory.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/module-asyncify.d.ts +0 -53
- package/node_modules/@tootallnate/quickjs-emscripten/dist/module-asyncify.js +0 -97
- package/node_modules/@tootallnate/quickjs-emscripten/dist/module-asyncify.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/module-test.d.ts +0 -27
- package/node_modules/@tootallnate/quickjs-emscripten/dist/module-test.js +0 -77
- package/node_modules/@tootallnate/quickjs-emscripten/dist/module-test.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/module.d.ts +0 -152
- package/node_modules/@tootallnate/quickjs-emscripten/dist/module.js +0 -302
- package/node_modules/@tootallnate/quickjs-emscripten/dist/module.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/runtime-asyncify.d.ts +0 -38
- package/node_modules/@tootallnate/quickjs-emscripten/dist/runtime-asyncify.js +0 -49
- package/node_modules/@tootallnate/quickjs-emscripten/dist/runtime-asyncify.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/runtime.d.ts +0 -174
- package/node_modules/@tootallnate/quickjs-emscripten/dist/runtime.js +0 -300
- package/node_modules/@tootallnate/quickjs-emscripten/dist/runtime.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/types-ffi.d.ts +0 -114
- package/node_modules/@tootallnate/quickjs-emscripten/dist/types-ffi.js +0 -38
- package/node_modules/@tootallnate/quickjs-emscripten/dist/types-ffi.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/types.d.ts +0 -158
- package/node_modules/@tootallnate/quickjs-emscripten/dist/types.js +0 -58
- package/node_modules/@tootallnate/quickjs-emscripten/dist/types.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/variants.d.ts +0 -113
- package/node_modules/@tootallnate/quickjs-emscripten/dist/variants.js +0 -169
- package/node_modules/@tootallnate/quickjs-emscripten/dist/variants.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/dist/vm-interface.d.ts +0 -68
- package/node_modules/@tootallnate/quickjs-emscripten/dist/vm-interface.js +0 -12
- package/node_modules/@tootallnate/quickjs-emscripten/dist/vm-interface.js.map +0 -1
- package/node_modules/@tootallnate/quickjs-emscripten/package.json +0 -60
- package/node_modules/@types/mime-types/LICENSE +0 -21
- package/node_modules/@types/mime-types/README.md +0 -28
- package/node_modules/@types/mime-types/index.d.ts +0 -9
- package/node_modules/@types/mime-types/package.json +0 -25
- package/node_modules/@types/yauzl/LICENSE +0 -21
- package/node_modules/@types/yauzl/README.md +0 -15
- package/node_modules/@types/yauzl/index.d.ts +0 -110
- package/node_modules/@types/yauzl/package.json +0 -27
- package/node_modules/ansi-regex/index.d.ts +0 -33
- package/node_modules/ansi-regex/index.js +0 -14
- package/node_modules/ansi-regex/license +0 -9
- package/node_modules/ansi-regex/package.json +0 -61
- package/node_modules/ansi-regex/readme.md +0 -66
- package/node_modules/ansi-styles/index.d.ts +0 -345
- package/node_modules/ansi-styles/index.js +0 -163
- package/node_modules/ansi-styles/package.json +0 -56
- package/node_modules/ansi-styles/readme.md +0 -152
- package/node_modules/any-promise/.jshintrc +0 -4
- package/node_modules/any-promise/.npmignore +0 -7
- package/node_modules/any-promise/LICENSE +0 -19
- package/node_modules/any-promise/README.md +0 -161
- package/node_modules/any-promise/implementation.d.ts +0 -3
- package/node_modules/any-promise/implementation.js +0 -1
- package/node_modules/any-promise/index.d.ts +0 -73
- package/node_modules/any-promise/index.js +0 -1
- package/node_modules/any-promise/loader.js +0 -78
- package/node_modules/any-promise/optional.js +0 -6
- package/node_modules/any-promise/package.json +0 -45
- package/node_modules/any-promise/register/bluebird.d.ts +0 -1
- package/node_modules/any-promise/register/bluebird.js +0 -2
- package/node_modules/any-promise/register/es6-promise.d.ts +0 -1
- package/node_modules/any-promise/register/es6-promise.js +0 -2
- package/node_modules/any-promise/register/lie.d.ts +0 -1
- package/node_modules/any-promise/register/lie.js +0 -2
- package/node_modules/any-promise/register/native-promise-only.d.ts +0 -1
- package/node_modules/any-promise/register/native-promise-only.js +0 -2
- package/node_modules/any-promise/register/pinkie.d.ts +0 -1
- package/node_modules/any-promise/register/pinkie.js +0 -2
- package/node_modules/any-promise/register/promise.d.ts +0 -1
- package/node_modules/any-promise/register/promise.js +0 -2
- package/node_modules/any-promise/register/q.d.ts +0 -1
- package/node_modules/any-promise/register/q.js +0 -2
- package/node_modules/any-promise/register/rsvp.d.ts +0 -1
- package/node_modules/any-promise/register/rsvp.js +0 -2
- package/node_modules/any-promise/register/vow.d.ts +0 -1
- package/node_modules/any-promise/register/vow.js +0 -2
- package/node_modules/any-promise/register/when.d.ts +0 -1
- package/node_modules/any-promise/register/when.js +0 -2
- package/node_modules/any-promise/register-shim.js +0 -18
- package/node_modules/any-promise/register.d.ts +0 -17
- package/node_modules/any-promise/register.js +0 -94
- package/node_modules/ast-types/.github/dependabot.yml +0 -9
- package/node_modules/ast-types/.github/workflows/main.yml +0 -29
- package/node_modules/ast-types/LICENSE +0 -20
- package/node_modules/ast-types/README.md +0 -512
- package/node_modules/ast-types/def/babel-core.d.ts +0 -2
- package/node_modules/ast-types/def/babel-core.js +0 -256
- package/node_modules/ast-types/def/babel.d.ts +0 -2
- package/node_modules/ast-types/def/babel.js +0 -11
- package/node_modules/ast-types/def/core.d.ts +0 -2
- package/node_modules/ast-types/def/core.js +0 -298
- package/node_modules/ast-types/def/es-proposals.d.ts +0 -2
- package/node_modules/ast-types/def/es-proposals.js +0 -33
- package/node_modules/ast-types/def/es2020.d.ts +0 -2
- package/node_modules/ast-types/def/es2020.js +0 -16
- package/node_modules/ast-types/def/es6.d.ts +0 -2
- package/node_modules/ast-types/def/es6.js +0 -210
- package/node_modules/ast-types/def/es7.d.ts +0 -2
- package/node_modules/ast-types/def/es7.js +0 -34
- package/node_modules/ast-types/def/esprima.d.ts +0 -2
- package/node_modules/ast-types/def/esprima.js +0 -49
- package/node_modules/ast-types/def/flow.d.ts +0 -2
- package/node_modules/ast-types/def/flow.js +0 -292
- package/node_modules/ast-types/def/jsx.d.ts +0 -2
- package/node_modules/ast-types/def/jsx.js +0 -103
- package/node_modules/ast-types/def/type-annotations.d.ts +0 -7
- package/node_modules/ast-types/def/type-annotations.js +0 -40
- package/node_modules/ast-types/def/typescript.d.ts +0 -2
- package/node_modules/ast-types/def/typescript.js +0 -344
- package/node_modules/ast-types/fork.d.ts +0 -42
- package/node_modules/ast-types/fork.js +0 -52
- package/node_modules/ast-types/gen/builders.d.ts +0 -2584
- package/node_modules/ast-types/gen/builders.js +0 -2
- package/node_modules/ast-types/gen/kinds.d.ts +0 -264
- package/node_modules/ast-types/gen/kinds.js +0 -2
- package/node_modules/ast-types/gen/namedTypes.d.ts +0 -1809
- package/node_modules/ast-types/gen/namedTypes.js +0 -6
- package/node_modules/ast-types/gen/visitor.d.ts +0 -268
- package/node_modules/ast-types/gen/visitor.js +0 -2
- package/node_modules/ast-types/lib/equiv.d.ts +0 -5
- package/node_modules/ast-types/lib/equiv.js +0 -154
- package/node_modules/ast-types/lib/node-path.d.ts +0 -22
- package/node_modules/ast-types/lib/node-path.js +0 -411
- package/node_modules/ast-types/lib/path-visitor.d.ts +0 -52
- package/node_modules/ast-types/lib/path-visitor.js +0 -343
- package/node_modules/ast-types/lib/path.d.ts +0 -25
- package/node_modules/ast-types/lib/path.js +0 -331
- package/node_modules/ast-types/lib/scope.d.ts +0 -26
- package/node_modules/ast-types/lib/scope.js +0 -318
- package/node_modules/ast-types/lib/shared.d.ts +0 -13
- package/node_modules/ast-types/lib/shared.js +0 -47
- package/node_modules/ast-types/lib/types.d.ts +0 -136
- package/node_modules/ast-types/lib/types.js +0 -780
- package/node_modules/ast-types/main.d.ts +0 -28
- package/node_modules/ast-types/main.js +0 -53
- package/node_modules/ast-types/package.json +0 -65
- package/node_modules/ast-types/tsconfig.json +0 -21
- package/node_modules/ast-types/types.d.ts +0 -6
- package/node_modules/ast-types/types.js +0 -2
- package/node_modules/basic-ftp/LICENSE.txt +0 -19
- package/node_modules/basic-ftp/README.md +0 -244
- package/node_modules/basic-ftp/dist/Client.d.ts +0 -340
- package/node_modules/basic-ftp/dist/Client.js +0 -785
- package/node_modules/basic-ftp/dist/FileInfo.d.ts +0 -80
- package/node_modules/basic-ftp/dist/FileInfo.js +0 -92
- package/node_modules/basic-ftp/dist/FtpContext.d.ts +0 -175
- package/node_modules/basic-ftp/dist/FtpContext.js +0 -375
- package/node_modules/basic-ftp/dist/ProgressTracker.d.ts +0 -45
- package/node_modules/basic-ftp/dist/ProgressTracker.js +0 -72
- package/node_modules/basic-ftp/dist/StringEncoding.d.ts +0 -1
- package/node_modules/basic-ftp/dist/StringEncoding.js +0 -2
- package/node_modules/basic-ftp/dist/StringWriter.d.ts +0 -10
- package/node_modules/basic-ftp/dist/StringWriter.js +0 -29
- package/node_modules/basic-ftp/dist/index.d.ts +0 -9
- package/node_modules/basic-ftp/dist/index.js +0 -28
- package/node_modules/basic-ftp/dist/netUtils.d.ts +0 -21
- package/node_modules/basic-ftp/dist/netUtils.js +0 -66
- package/node_modules/basic-ftp/dist/parseControlResponse.d.ts +0 -22
- package/node_modules/basic-ftp/dist/parseControlResponse.js +0 -66
- package/node_modules/basic-ftp/dist/parseList.d.ts +0 -5
- package/node_modules/basic-ftp/dist/parseList.js +0 -79
- package/node_modules/basic-ftp/dist/parseListDOS.d.ts +0 -12
- package/node_modules/basic-ftp/dist/parseListDOS.js +0 -52
- package/node_modules/basic-ftp/dist/parseListMLSD.d.ts +0 -20
- package/node_modules/basic-ftp/dist/parseListMLSD.js +0 -187
- package/node_modules/basic-ftp/dist/parseListUnix.d.ts +0 -12
- package/node_modules/basic-ftp/dist/parseListUnix.js +0 -155
- package/node_modules/basic-ftp/dist/transfer.d.ts +0 -39
- package/node_modules/basic-ftp/dist/transfer.js +0 -318
- package/node_modules/basic-ftp/package.json +0 -52
- package/node_modules/buffer-crc32/LICENSE +0 -19
- package/node_modules/buffer-crc32/README.md +0 -47
- package/node_modules/buffer-crc32/index.js +0 -111
- package/node_modules/buffer-crc32/package.json +0 -39
- package/node_modules/cli-highlight/LICENSE.txt +0 -15
- package/node_modules/cli-highlight/README.md +0 -88
- package/node_modules/cli-highlight/bin/highlight +0 -2
- package/node_modules/cli-highlight/dist/cli.d.ts +0 -1
- package/node_modules/cli-highlight/dist/cli.js +0 -102
- package/node_modules/cli-highlight/dist/cli.js.map +0 -1
- package/node_modules/cli-highlight/dist/index.d.ts +0 -53
- package/node_modules/cli-highlight/dist/index.js +0 -112
- package/node_modules/cli-highlight/dist/index.js.map +0 -1
- package/node_modules/cli-highlight/dist/test/test.d.ts +0 -1
- package/node_modules/cli-highlight/dist/test/test.js +0 -62
- package/node_modules/cli-highlight/dist/test/test.js.map +0 -1
- package/node_modules/cli-highlight/dist/theme.d.ts +0 -270
- package/node_modules/cli-highlight/dist/theme.js +0 -265
- package/node_modules/cli-highlight/dist/theme.js.map +0 -1
- package/node_modules/cli-highlight/node_modules/chalk/index.d.ts +0 -415
- package/node_modules/cli-highlight/node_modules/chalk/package.json +0 -68
- package/node_modules/cli-highlight/node_modules/chalk/readme.md +0 -341
- package/node_modules/cli-highlight/node_modules/chalk/source/index.js +0 -229
- package/node_modules/cli-highlight/node_modules/chalk/source/templates.js +0 -134
- package/node_modules/cli-highlight/node_modules/chalk/source/util.js +0 -39
- package/node_modules/cli-highlight/package.json +0 -129
- package/node_modules/cliui/LICENSE.txt +0 -14
- package/node_modules/cliui/README.md +0 -141
- package/node_modules/cliui/build/index.cjs +0 -302
- package/node_modules/cliui/build/lib/index.js +0 -287
- package/node_modules/cliui/build/lib/string-utils.js +0 -27
- package/node_modules/cliui/index.mjs +0 -13
- package/node_modules/cliui/node_modules/ansi-regex/index.d.ts +0 -37
- package/node_modules/cliui/node_modules/ansi-regex/index.js +0 -10
- package/node_modules/cliui/node_modules/ansi-regex/license +0 -9
- package/node_modules/cliui/node_modules/ansi-regex/package.json +0 -55
- package/node_modules/cliui/node_modules/ansi-regex/readme.md +0 -78
- package/node_modules/cliui/node_modules/strip-ansi/index.d.ts +0 -17
- package/node_modules/cliui/node_modules/strip-ansi/index.js +0 -4
- package/node_modules/cliui/node_modules/strip-ansi/license +0 -9
- package/node_modules/cliui/node_modules/strip-ansi/package.json +0 -54
- package/node_modules/cliui/node_modules/strip-ansi/readme.md +0 -46
- package/node_modules/cliui/package.json +0 -83
- package/node_modules/color-convert/LICENSE +0 -21
- package/node_modules/color-convert/README.md +0 -68
- package/node_modules/color-convert/conversions.js +0 -839
- package/node_modules/color-convert/index.js +0 -81
- package/node_modules/color-convert/package.json +0 -48
- package/node_modules/color-convert/route.js +0 -97
- package/node_modules/color-name/LICENSE +0 -8
- package/node_modules/color-name/README.md +0 -11
- package/node_modules/color-name/index.js +0 -152
- package/node_modules/color-name/package.json +0 -28
- package/node_modules/degenerator/README.md +0 -117
- package/node_modules/degenerator/dist/compile.d.ts +0 -11
- package/node_modules/degenerator/dist/compile.d.ts.map +0 -1
- package/node_modules/degenerator/dist/compile.js +0 -107
- package/node_modules/degenerator/dist/compile.js.map +0 -1
- package/node_modules/degenerator/dist/degenerator.d.ts +0 -12
- package/node_modules/degenerator/dist/degenerator.d.ts.map +0 -1
- package/node_modules/degenerator/dist/degenerator.js +0 -156
- package/node_modules/degenerator/dist/degenerator.js.map +0 -1
- package/node_modules/degenerator/dist/index.d.ts +0 -3
- package/node_modules/degenerator/dist/index.d.ts.map +0 -1
- package/node_modules/degenerator/dist/index.js +0 -19
- package/node_modules/degenerator/dist/index.js.map +0 -1
- package/node_modules/degenerator/package.json +0 -42
- package/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
- package/node_modules/emoji-regex/README.md +0 -73
- package/node_modules/emoji-regex/es2015/index.js +0 -6
- package/node_modules/emoji-regex/es2015/text.js +0 -6
- package/node_modules/emoji-regex/index.d.ts +0 -23
- package/node_modules/emoji-regex/index.js +0 -6
- package/node_modules/emoji-regex/package.json +0 -50
- package/node_modules/emoji-regex/text.js +0 -6
- package/node_modules/end-of-stream/LICENSE +0 -21
- package/node_modules/end-of-stream/README.md +0 -54
- package/node_modules/end-of-stream/index.js +0 -96
- package/node_modules/end-of-stream/package.json +0 -37
- package/node_modules/escalade/dist/index.js +0 -22
- package/node_modules/escalade/dist/index.mjs +0 -22
- package/node_modules/escalade/index.d.mts +0 -11
- package/node_modules/escalade/index.d.ts +0 -15
- package/node_modules/escalade/license +0 -9
- package/node_modules/escalade/package.json +0 -74
- package/node_modules/escalade/readme.md +0 -211
- package/node_modules/escalade/sync/index.d.mts +0 -9
- package/node_modules/escalade/sync/index.d.ts +0 -13
- package/node_modules/escalade/sync/index.js +0 -18
- package/node_modules/escalade/sync/index.mjs +0 -18
- package/node_modules/escodegen/LICENSE.BSD +0 -21
- package/node_modules/escodegen/README.md +0 -84
- package/node_modules/escodegen/bin/escodegen.js +0 -77
- package/node_modules/escodegen/bin/esgenerate.js +0 -64
- package/node_modules/escodegen/escodegen.js +0 -2667
- package/node_modules/escodegen/package.json +0 -63
- package/node_modules/esprima/LICENSE.BSD +0 -21
- package/node_modules/esprima/README.md +0 -46
- package/node_modules/esprima/bin/esparse.js +0 -139
- package/node_modules/esprima/bin/esvalidate.js +0 -236
- package/node_modules/esprima/dist/esprima.js +0 -6709
- package/node_modules/esprima/package.json +0 -112
- package/node_modules/estraverse/.jshintrc +0 -16
- package/node_modules/estraverse/LICENSE.BSD +0 -19
- package/node_modules/estraverse/README.md +0 -153
- package/node_modules/estraverse/estraverse.js +0 -805
- package/node_modules/estraverse/gulpfile.js +0 -70
- package/node_modules/estraverse/package.json +0 -40
- package/node_modules/esutils/LICENSE.BSD +0 -19
- package/node_modules/esutils/README.md +0 -174
- package/node_modules/esutils/lib/ast.js +0 -144
- package/node_modules/esutils/lib/code.js +0 -135
- package/node_modules/esutils/lib/keyword.js +0 -165
- package/node_modules/esutils/lib/utils.js +0 -33
- package/node_modules/esutils/package.json +0 -44
- package/node_modules/extract-zip/LICENSE +0 -23
- package/node_modules/extract-zip/cli.js +0 -19
- package/node_modules/extract-zip/index.d.ts +0 -21
- package/node_modules/extract-zip/index.js +0 -173
- package/node_modules/extract-zip/package.json +0 -80
- package/node_modules/extract-zip/readme.md +0 -57
- package/node_modules/fd-slicer/.npmignore +0 -2
- package/node_modules/fd-slicer/.travis.yml +0 -7
- package/node_modules/fd-slicer/CHANGELOG.md +0 -49
- package/node_modules/fd-slicer/LICENSE +0 -21
- package/node_modules/fd-slicer/README.md +0 -199
- package/node_modules/fd-slicer/index.js +0 -296
- package/node_modules/fd-slicer/package.json +0 -36
- package/node_modules/fd-slicer/test/test.js +0 -350
- package/node_modules/file-type/core.d.ts +0 -253
- package/node_modules/file-type/core.js +0 -2899
- package/node_modules/file-type/index.d.ts +0 -98
- package/node_modules/file-type/index.js +0 -163
- package/node_modules/file-type/license +0 -9
- package/node_modules/file-type/package.json +0 -290
- package/node_modules/file-type/readme.md +0 -667
- package/node_modules/file-type/supported.js +0 -360
- package/node_modules/file-type/util.js +0 -60
- package/node_modules/get-caller-file/LICENSE.md +0 -6
- package/node_modules/get-caller-file/README.md +0 -41
- package/node_modules/get-caller-file/index.d.ts +0 -2
- package/node_modules/get-caller-file/index.js +0 -22
- package/node_modules/get-caller-file/index.js.map +0 -1
- package/node_modules/get-caller-file/package.json +0 -42
- package/node_modules/get-stream/buffer-stream.js +0 -52
- package/node_modules/get-stream/index.d.ts +0 -108
- package/node_modules/get-stream/index.js +0 -60
- package/node_modules/get-stream/license +0 -9
- package/node_modules/get-stream/package.json +0 -50
- package/node_modules/get-stream/readme.md +0 -124
- package/node_modules/get-uri/LICENSE +0 -22
- package/node_modules/get-uri/README.md +0 -109
- package/node_modules/get-uri/dist/data.d.ts +0 -16
- package/node_modules/get-uri/dist/data.js +0 -43
- package/node_modules/get-uri/dist/data.js.map +0 -1
- package/node_modules/get-uri/dist/file.d.ts +0 -17
- package/node_modules/get-uri/dist/file.js +0 -57
- package/node_modules/get-uri/dist/file.js.map +0 -1
- package/node_modules/get-uri/dist/ftp.d.ts +0 -14
- package/node_modules/get-uri/dist/ftp.js +0 -93
- package/node_modules/get-uri/dist/ftp.js.map +0 -1
- package/node_modules/get-uri/dist/http-error.d.ts +0 -8
- package/node_modules/get-uri/dist/http-error.js +0 -15
- package/node_modules/get-uri/dist/http-error.js.map +0 -1
- package/node_modules/get-uri/dist/http.d.ts +0 -29
- package/node_modules/get-uri/dist/http.js +0 -191
- package/node_modules/get-uri/dist/http.js.map +0 -1
- package/node_modules/get-uri/dist/https.d.ts +0 -6
- package/node_modules/get-uri/dist/https.js +0 -16
- package/node_modules/get-uri/dist/https.js.map +0 -1
- package/node_modules/get-uri/dist/index.d.ts +0 -37
- package/node_modules/get-uri/dist/index.js +0 -57
- package/node_modules/get-uri/dist/index.js.map +0 -1
- package/node_modules/get-uri/dist/notfound.d.ts +0 -10
- package/node_modules/get-uri/dist/notfound.js +0 -16
- package/node_modules/get-uri/dist/notfound.js.map +0 -1
- package/node_modules/get-uri/dist/notmodified.d.ts +0 -10
- package/node_modules/get-uri/dist/notmodified.js +0 -17
- package/node_modules/get-uri/dist/notmodified.js.map +0 -1
- package/node_modules/get-uri/node_modules/data-uri-to-buffer/LICENSE +0 -22
- package/node_modules/get-uri/node_modules/data-uri-to-buffer/README.md +0 -61
- package/node_modules/get-uri/node_modules/data-uri-to-buffer/dist/common.d.ts +0 -17
- package/node_modules/get-uri/node_modules/data-uri-to-buffer/dist/common.d.ts.map +0 -1
- package/node_modules/get-uri/node_modules/data-uri-to-buffer/dist/common.js +0 -54
- package/node_modules/get-uri/node_modules/data-uri-to-buffer/dist/common.js.map +0 -1
- package/node_modules/get-uri/node_modules/data-uri-to-buffer/dist/index.d.ts +0 -8
- package/node_modules/get-uri/node_modules/data-uri-to-buffer/dist/index.d.ts.map +0 -1
- package/node_modules/get-uri/node_modules/data-uri-to-buffer/dist/index.js +0 -48
- package/node_modules/get-uri/node_modules/data-uri-to-buffer/dist/index.js.map +0 -1
- package/node_modules/get-uri/node_modules/data-uri-to-buffer/dist/node.d.ts +0 -8
- package/node_modules/get-uri/node_modules/data-uri-to-buffer/dist/node.d.ts.map +0 -1
- package/node_modules/get-uri/node_modules/data-uri-to-buffer/dist/node.js +0 -26
- package/node_modules/get-uri/node_modules/data-uri-to-buffer/dist/node.js.map +0 -1
- package/node_modules/get-uri/node_modules/data-uri-to-buffer/package.json +0 -48
- package/node_modules/get-uri/package.json +0 -58
- package/node_modules/has-flag/index.d.ts +0 -39
- package/node_modules/has-flag/index.js +0 -8
- package/node_modules/has-flag/license +0 -9
- package/node_modules/has-flag/package.json +0 -46
- package/node_modules/has-flag/readme.md +0 -89
- package/node_modules/ieee754/LICENSE +0 -11
- package/node_modules/ieee754/README.md +0 -51
- package/node_modules/ieee754/index.d.ts +0 -10
- package/node_modules/ieee754/index.js +0 -85
- package/node_modules/ieee754/package.json +0 -52
- package/node_modules/ip-address/LICENSE +0 -19
- package/node_modules/ip-address/README.md +0 -278
- package/node_modules/ip-address/dist/address-error.d.ts +0 -4
- package/node_modules/ip-address/dist/address-error.js +0 -12
- package/node_modules/ip-address/dist/address-error.js.map +0 -1
- package/node_modules/ip-address/dist/common.d.ts +0 -20
- package/node_modules/ip-address/dist/common.js +0 -67
- package/node_modules/ip-address/dist/common.js.map +0 -1
- package/node_modules/ip-address/dist/ip-address.d.ts +0 -7
- package/node_modules/ip-address/dist/ip-address.js +0 -35
- package/node_modules/ip-address/dist/ip-address.js.map +0 -1
- package/node_modules/ip-address/dist/ipv4.d.ts +0 -267
- package/node_modules/ip-address/dist/ipv4.js +0 -485
- package/node_modules/ip-address/dist/ipv4.js.map +0 -1
- package/node_modules/ip-address/dist/ipv6.d.ts +0 -489
- package/node_modules/ip-address/dist/ipv6.js +0 -1217
- package/node_modules/ip-address/dist/ipv6.js.map +0 -1
- package/node_modules/ip-address/dist/v4/constants.d.ts +0 -4
- package/node_modules/ip-address/dist/v4/constants.js +0 -8
- package/node_modules/ip-address/dist/v4/constants.js.map +0 -1
- package/node_modules/ip-address/dist/v6/constants.d.ts +0 -44
- package/node_modules/ip-address/dist/v6/constants.js +0 -81
- package/node_modules/ip-address/dist/v6/constants.js.map +0 -1
- package/node_modules/ip-address/dist/v6/helpers.d.ts +0 -18
- package/node_modules/ip-address/dist/v6/helpers.js +0 -54
- package/node_modules/ip-address/dist/v6/helpers.js.map +0 -1
- package/node_modules/ip-address/dist/v6/regular-expressions.d.ts +0 -5
- package/node_modules/ip-address/dist/v6/regular-expressions.js +0 -95
- package/node_modules/ip-address/dist/v6/regular-expressions.js.map +0 -1
- package/node_modules/ip-address/package.json +0 -88
- package/node_modules/is-fullwidth-code-point/index.d.ts +0 -17
- package/node_modules/is-fullwidth-code-point/index.js +0 -50
- package/node_modules/is-fullwidth-code-point/license +0 -9
- package/node_modules/is-fullwidth-code-point/package.json +0 -42
- package/node_modules/is-fullwidth-code-point/readme.md +0 -39
- package/node_modules/mime-db/HISTORY.md +0 -541
- package/node_modules/mime-db/LICENSE +0 -23
- package/node_modules/mime-db/README.md +0 -109
- package/node_modules/mime-db/db.json +0 -9342
- package/node_modules/mime-db/index.js +0 -12
- package/node_modules/mime-db/package.json +0 -56
- package/node_modules/mime-types/HISTORY.md +0 -428
- package/node_modules/mime-types/LICENSE +0 -23
- package/node_modules/mime-types/README.md +0 -126
- package/node_modules/mime-types/index.js +0 -211
- package/node_modules/mime-types/mimeScore.js +0 -57
- package/node_modules/mime-types/package.json +0 -49
- package/node_modules/mz/LICENSE +0 -22
- package/node_modules/mz/README.md +0 -106
- package/node_modules/mz/child_process.js +0 -8
- package/node_modules/mz/crypto.js +0 -9
- package/node_modules/mz/dns.js +0 -16
- package/node_modules/mz/fs.js +0 -62
- package/node_modules/mz/index.js +0 -8
- package/node_modules/mz/package.json +0 -44
- package/node_modules/mz/readline.js +0 -64
- package/node_modules/mz/zlib.js +0 -13
- package/node_modules/netmask/CHANGELOG.md +0 -66
- package/node_modules/netmask/LICENSE.md +0 -21
- package/node_modules/netmask/README.md +0 -112
- package/node_modules/netmask/dist/netmask.d.ts +0 -21
- package/node_modules/netmask/dist/netmask.js +0 -68
- package/node_modules/netmask/dist/netmask4.d.ts +0 -20
- package/node_modules/netmask/dist/netmask4.js +0 -189
- package/node_modules/netmask/dist/netmask6.d.ts +0 -20
- package/node_modules/netmask/dist/netmask6.js +0 -187
- package/node_modules/netmask/package.json +0 -45
- package/node_modules/object-assign/index.js +0 -90
- package/node_modules/object-assign/license +0 -21
- package/node_modules/object-assign/package.json +0 -42
- package/node_modules/object-assign/readme.md +0 -61
- package/node_modules/once/README.md +0 -79
- package/node_modules/once/once.js +0 -42
- package/node_modules/once/package.json +0 -33
- package/node_modules/pac-proxy-agent/LICENSE +0 -22
- package/node_modules/pac-proxy-agent/README.md +0 -27
- package/node_modules/pac-proxy-agent/dist/index.d.ts +0 -60
- package/node_modules/pac-proxy-agent/dist/index.d.ts.map +0 -1
- package/node_modules/pac-proxy-agent/dist/index.js +0 -238
- package/node_modules/pac-proxy-agent/dist/index.js.map +0 -1
- package/node_modules/pac-proxy-agent/package.json +0 -58
- package/node_modules/pac-resolver/LICENSE +0 -22
- package/node_modules/pac-resolver/README.md +0 -59
- package/node_modules/pac-resolver/dist/dateRange.d.ts +0 -67
- package/node_modules/pac-resolver/dist/dateRange.d.ts.map +0 -1
- package/node_modules/pac-resolver/dist/dateRange.js +0 -73
- package/node_modules/pac-resolver/dist/dateRange.js.map +0 -1
- package/node_modules/pac-resolver/dist/dnsDomainIs.d.ts +0 -23
- package/node_modules/pac-resolver/dist/dnsDomainIs.d.ts.map +0 -1
- package/node_modules/pac-resolver/dist/dnsDomainIs.js +0 -30
- package/node_modules/pac-resolver/dist/dnsDomainIs.js.map +0 -1
- package/node_modules/pac-resolver/dist/dnsDomainLevels.d.ts +0 -18
- package/node_modules/pac-resolver/dist/dnsDomainLevels.d.ts.map +0 -1
- package/node_modules/pac-resolver/dist/dnsDomainLevels.js +0 -28
- package/node_modules/pac-resolver/dist/dnsDomainLevels.js.map +0 -1
- package/node_modules/pac-resolver/dist/dnsResolve.d.ts +0 -16
- package/node_modules/pac-resolver/dist/dnsResolve.d.ts.map +0 -1
- package/node_modules/pac-resolver/dist/dnsResolve.js +0 -32
- package/node_modules/pac-resolver/dist/dnsResolve.js.map +0 -1
- package/node_modules/pac-resolver/dist/index.d.ts +0 -50
- package/node_modules/pac-resolver/dist/index.d.ts.map +0 -1
- package/node_modules/pac-resolver/dist/index.js +0 -87
- package/node_modules/pac-resolver/dist/index.js.map +0 -1
- package/node_modules/pac-resolver/dist/ip.d.ts +0 -8
- package/node_modules/pac-resolver/dist/ip.d.ts.map +0 -1
- package/node_modules/pac-resolver/dist/ip.js +0 -50
- package/node_modules/pac-resolver/dist/ip.js.map +0 -1
- package/node_modules/pac-resolver/dist/isInNet.d.ts +0 -24
- package/node_modules/pac-resolver/dist/isInNet.d.ts.map +0 -1
- package/node_modules/pac-resolver/dist/isInNet.js +0 -42
- package/node_modules/pac-resolver/dist/isInNet.js.map +0 -1
- package/node_modules/pac-resolver/dist/isPlainHostName.d.ts +0 -18
- package/node_modules/pac-resolver/dist/isPlainHostName.d.ts.map +0 -1
- package/node_modules/pac-resolver/dist/isPlainHostName.js +0 -23
- package/node_modules/pac-resolver/dist/isPlainHostName.js.map +0 -1
- package/node_modules/pac-resolver/dist/isResolvable.d.ts +0 -8
- package/node_modules/pac-resolver/dist/isResolvable.d.ts.map +0 -1
- package/node_modules/pac-resolver/dist/isResolvable.js +0 -23
- package/node_modules/pac-resolver/dist/isResolvable.js.map +0 -1
- package/node_modules/pac-resolver/dist/localHostOrDomainIs.d.ts +0 -26
- package/node_modules/pac-resolver/dist/localHostOrDomainIs.d.ts.map +0 -1
- package/node_modules/pac-resolver/dist/localHostOrDomainIs.js +0 -40
- package/node_modules/pac-resolver/dist/localHostOrDomainIs.js.map +0 -1
- package/node_modules/pac-resolver/dist/myIpAddress.d.ts +0 -16
- package/node_modules/pac-resolver/dist/myIpAddress.d.ts.map +0 -1
- package/node_modules/pac-resolver/dist/myIpAddress.js +0 -50
- package/node_modules/pac-resolver/dist/myIpAddress.js.map +0 -1
- package/node_modules/pac-resolver/dist/shExpMatch.d.ts +0 -23
- package/node_modules/pac-resolver/dist/shExpMatch.d.ts.map +0 -1
- package/node_modules/pac-resolver/dist/shExpMatch.js +0 -41
- package/node_modules/pac-resolver/dist/shExpMatch.js.map +0 -1
- package/node_modules/pac-resolver/dist/timeRange.d.ts +0 -43
- package/node_modules/pac-resolver/dist/timeRange.d.ts.map +0 -1
- package/node_modules/pac-resolver/dist/timeRange.js +0 -92
- package/node_modules/pac-resolver/dist/timeRange.js.map +0 -1
- package/node_modules/pac-resolver/dist/util.d.ts +0 -6
- package/node_modules/pac-resolver/dist/util.d.ts.map +0 -1
- package/node_modules/pac-resolver/dist/util.js +0 -22
- package/node_modules/pac-resolver/dist/util.js.map +0 -1
- package/node_modules/pac-resolver/dist/weekdayRange.d.ts +0 -45
- package/node_modules/pac-resolver/dist/weekdayRange.d.ts.map +0 -1
- package/node_modules/pac-resolver/dist/weekdayRange.js +0 -91
- package/node_modules/pac-resolver/dist/weekdayRange.js.map +0 -1
- package/node_modules/pac-resolver/package.json +0 -47
- package/node_modules/parse5/LICENSE +0 -19
- package/node_modules/parse5/README.md +0 -38
- package/node_modules/parse5/lib/common/doctype.js +0 -162
- package/node_modules/parse5/lib/common/error-codes.js +0 -65
- package/node_modules/parse5/lib/common/foreign-content.js +0 -265
- package/node_modules/parse5/lib/common/html.js +0 -272
- package/node_modules/parse5/lib/common/unicode.js +0 -109
- package/node_modules/parse5/lib/extensions/error-reporting/mixin-base.js +0 -43
- package/node_modules/parse5/lib/extensions/error-reporting/parser-mixin.js +0 -52
- package/node_modules/parse5/lib/extensions/error-reporting/preprocessor-mixin.js +0 -24
- package/node_modules/parse5/lib/extensions/error-reporting/tokenizer-mixin.js +0 -17
- package/node_modules/parse5/lib/extensions/location-info/open-element-stack-mixin.js +0 -35
- package/node_modules/parse5/lib/extensions/location-info/parser-mixin.js +0 -222
- package/node_modules/parse5/lib/extensions/location-info/tokenizer-mixin.js +0 -146
- package/node_modules/parse5/lib/extensions/position-tracking/preprocessor-mixin.js +0 -64
- package/node_modules/parse5/lib/index.js +0 -29
- package/node_modules/parse5/lib/parser/formatting-element-list.js +0 -181
- package/node_modules/parse5/lib/parser/index.js +0 -2956
- package/node_modules/parse5/lib/parser/open-element-stack.js +0 -482
- package/node_modules/parse5/lib/serializer/index.js +0 -176
- package/node_modules/parse5/lib/tokenizer/index.js +0 -2196
- package/node_modules/parse5/lib/tokenizer/named-entity-data.js +0 -5
- package/node_modules/parse5/lib/tokenizer/preprocessor.js +0 -159
- package/node_modules/parse5/lib/tree-adapters/default.js +0 -217
- package/node_modules/parse5/lib/utils/merge-options.js +0 -13
- package/node_modules/parse5/lib/utils/mixin.js +0 -39
- package/node_modules/parse5/package.json +0 -35
- package/node_modules/parse5-htmlparser2-tree-adapter/LICENSE +0 -19
- package/node_modules/parse5-htmlparser2-tree-adapter/README.md +0 -34
- package/node_modules/parse5-htmlparser2-tree-adapter/lib/index.js +0 -348
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/LICENSE +0 -19
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/README.md +0 -38
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/common/doctype.js +0 -162
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/common/error-codes.js +0 -65
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/common/foreign-content.js +0 -265
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/common/html.js +0 -272
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/common/unicode.js +0 -109
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/extensions/error-reporting/mixin-base.js +0 -43
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/extensions/error-reporting/parser-mixin.js +0 -52
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/extensions/error-reporting/preprocessor-mixin.js +0 -24
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/extensions/error-reporting/tokenizer-mixin.js +0 -17
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/extensions/location-info/open-element-stack-mixin.js +0 -35
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/extensions/location-info/parser-mixin.js +0 -223
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/extensions/location-info/tokenizer-mixin.js +0 -146
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/extensions/position-tracking/preprocessor-mixin.js +0 -64
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/index.js +0 -29
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/parser/formatting-element-list.js +0 -181
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/parser/index.js +0 -2956
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/parser/open-element-stack.js +0 -482
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/serializer/index.js +0 -176
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/tokenizer/index.js +0 -2196
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/tokenizer/named-entity-data.js +0 -5
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/tokenizer/preprocessor.js +0 -159
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/tree-adapters/default.js +0 -221
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/utils/merge-options.js +0 -13
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/lib/utils/mixin.js +0 -39
- package/node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5/package.json +0 -35
- package/node_modules/parse5-htmlparser2-tree-adapter/package.json +0 -27
- package/node_modules/pend/LICENSE +0 -23
- package/node_modules/pend/README.md +0 -41
- package/node_modules/pend/index.js +0 -55
- package/node_modules/pend/package.json +0 -18
- package/node_modules/pend/test.js +0 -137
- package/node_modules/proxy-agent/LICENSE +0 -22
- package/node_modules/proxy-agent/README.md +0 -59
- package/node_modules/proxy-agent/dist/index.d.ts +0 -62
- package/node_modules/proxy-agent/dist/index.d.ts.map +0 -1
- package/node_modules/proxy-agent/dist/index.js +0 -138
- package/node_modules/proxy-agent/dist/index.js.map +0 -1
- package/node_modules/proxy-agent/node_modules/lru-cache/LICENSE +0 -15
- package/node_modules/proxy-agent/node_modules/lru-cache/README.md +0 -1117
- package/node_modules/proxy-agent/node_modules/lru-cache/index.d.ts +0 -869
- package/node_modules/proxy-agent/node_modules/lru-cache/index.js +0 -1227
- package/node_modules/proxy-agent/node_modules/lru-cache/index.mjs +0 -1227
- package/node_modules/proxy-agent/node_modules/lru-cache/package.json +0 -96
- package/node_modules/proxy-agent/package.json +0 -60
- package/node_modules/proxy-from-env/.eslintrc +0 -29
- package/node_modules/proxy-from-env/.travis.yml +0 -10
- package/node_modules/proxy-from-env/LICENSE +0 -20
- package/node_modules/proxy-from-env/README.md +0 -131
- package/node_modules/proxy-from-env/index.js +0 -108
- package/node_modules/proxy-from-env/package.json +0 -34
- package/node_modules/proxy-from-env/test.js +0 -483
- package/node_modules/pump/.github/FUNDING.yml +0 -2
- package/node_modules/pump/.travis.yml +0 -5
- package/node_modules/pump/LICENSE +0 -21
- package/node_modules/pump/README.md +0 -74
- package/node_modules/pump/SECURITY.md +0 -5
- package/node_modules/pump/empty.js +0 -1
- package/node_modules/pump/index.js +0 -86
- package/node_modules/pump/package.json +0 -30
- package/node_modules/pump/test-browser.js +0 -66
- package/node_modules/pump/test-node.js +0 -53
- package/node_modules/require-directory/.jshintrc +0 -67
- package/node_modules/require-directory/.npmignore +0 -1
- package/node_modules/require-directory/.travis.yml +0 -3
- package/node_modules/require-directory/LICENSE +0 -22
- package/node_modules/require-directory/README.markdown +0 -184
- package/node_modules/require-directory/index.js +0 -86
- package/node_modules/require-directory/package.json +0 -40
- package/node_modules/smart-buffer/.prettierrc.yaml +0 -5
- package/node_modules/smart-buffer/.travis.yml +0 -13
- package/node_modules/smart-buffer/LICENSE +0 -20
- package/node_modules/smart-buffer/README.md +0 -633
- package/node_modules/smart-buffer/build/smartbuffer.js +0 -1233
- package/node_modules/smart-buffer/build/smartbuffer.js.map +0 -1
- package/node_modules/smart-buffer/build/utils.js +0 -108
- package/node_modules/smart-buffer/build/utils.js.map +0 -1
- package/node_modules/smart-buffer/docs/CHANGELOG.md +0 -70
- package/node_modules/smart-buffer/docs/README_v3.md +0 -367
- package/node_modules/smart-buffer/docs/ROADMAP.md +0 -0
- package/node_modules/smart-buffer/package.json +0 -79
- package/node_modules/smart-buffer/typings/smartbuffer.d.ts +0 -755
- package/node_modules/smart-buffer/typings/utils.d.ts +0 -66
- package/node_modules/socks/.eslintrc.cjs +0 -11
- package/node_modules/socks/.prettierrc.yaml +0 -7
- package/node_modules/socks/LICENSE +0 -20
- package/node_modules/socks/README.md +0 -686
- package/node_modules/socks/build/client/socksclient.js +0 -793
- package/node_modules/socks/build/client/socksclient.js.map +0 -1
- package/node_modules/socks/build/common/constants.js +0 -108
- package/node_modules/socks/build/common/constants.js.map +0 -1
- package/node_modules/socks/build/common/helpers.js +0 -167
- package/node_modules/socks/build/common/helpers.js.map +0 -1
- package/node_modules/socks/build/common/receivebuffer.js +0 -43
- package/node_modules/socks/build/common/receivebuffer.js.map +0 -1
- package/node_modules/socks/build/common/util.js +0 -25
- package/node_modules/socks/build/common/util.js.map +0 -1
- package/node_modules/socks/build/index.js +0 -18
- package/node_modules/socks/build/index.js.map +0 -1
- package/node_modules/socks/docs/examples/index.md +0 -17
- package/node_modules/socks/docs/examples/javascript/associateExample.md +0 -90
- package/node_modules/socks/docs/examples/javascript/bindExample.md +0 -83
- package/node_modules/socks/docs/examples/javascript/connectExample.md +0 -258
- package/node_modules/socks/docs/examples/typescript/associateExample.md +0 -93
- package/node_modules/socks/docs/examples/typescript/bindExample.md +0 -86
- package/node_modules/socks/docs/examples/typescript/connectExample.md +0 -265
- package/node_modules/socks/docs/index.md +0 -5
- package/node_modules/socks/docs/migratingFromV1.md +0 -86
- package/node_modules/socks/package.json +0 -58
- package/node_modules/socks/typings/client/socksclient.d.ts +0 -162
- package/node_modules/socks/typings/common/constants.d.ts +0 -151
- package/node_modules/socks/typings/common/helpers.d.ts +0 -17
- package/node_modules/socks/typings/common/receivebuffer.d.ts +0 -12
- package/node_modules/socks/typings/common/util.d.ts +0 -14
- package/node_modules/socks/typings/index.d.ts +0 -1
- package/node_modules/socks-proxy-agent/LICENSE +0 -22
- package/node_modules/socks-proxy-agent/README.md +0 -50
- package/node_modules/socks-proxy-agent/dist/index.d.ts +0 -27
- package/node_modules/socks-proxy-agent/dist/index.d.ts.map +0 -1
- package/node_modules/socks-proxy-agent/dist/index.js +0 -195
- package/node_modules/socks-proxy-agent/dist/index.js.map +0 -1
- package/node_modules/socks-proxy-agent/package.json +0 -142
- package/node_modules/source-map/LICENSE +0 -28
- package/node_modules/source-map/README.md +0 -742
- package/node_modules/source-map/dist/source-map.debug.js +0 -3234
- package/node_modules/source-map/dist/source-map.js +0 -3233
- package/node_modules/source-map/dist/source-map.min.js +0 -2
- package/node_modules/source-map/dist/source-map.min.js.map +0 -1
- package/node_modules/source-map/lib/array-set.js +0 -121
- package/node_modules/source-map/lib/base64-vlq.js +0 -140
- package/node_modules/source-map/lib/base64.js +0 -67
- package/node_modules/source-map/lib/binary-search.js +0 -111
- package/node_modules/source-map/lib/mapping-list.js +0 -79
- package/node_modules/source-map/lib/quick-sort.js +0 -114
- package/node_modules/source-map/lib/source-map-consumer.js +0 -1145
- package/node_modules/source-map/lib/source-map-generator.js +0 -425
- package/node_modules/source-map/lib/source-node.js +0 -413
- package/node_modules/source-map/lib/util.js +0 -488
- package/node_modules/source-map/package.json +0 -73
- package/node_modules/source-map/source-map.d.ts +0 -98
- package/node_modules/source-map/source-map.js +0 -8
- package/node_modules/string-width/index.d.ts +0 -29
- package/node_modules/string-width/index.js +0 -47
- package/node_modules/string-width/license +0 -9
- package/node_modules/string-width/node_modules/ansi-regex/index.d.ts +0 -37
- package/node_modules/string-width/node_modules/ansi-regex/index.js +0 -10
- package/node_modules/string-width/node_modules/ansi-regex/license +0 -9
- package/node_modules/string-width/node_modules/ansi-regex/package.json +0 -55
- package/node_modules/string-width/node_modules/ansi-regex/readme.md +0 -78
- package/node_modules/string-width/node_modules/strip-ansi/index.d.ts +0 -17
- package/node_modules/string-width/node_modules/strip-ansi/index.js +0 -4
- package/node_modules/string-width/node_modules/strip-ansi/license +0 -9
- package/node_modules/string-width/node_modules/strip-ansi/package.json +0 -54
- package/node_modules/string-width/node_modules/strip-ansi/readme.md +0 -46
- package/node_modules/string-width/package.json +0 -56
- package/node_modules/string-width/readme.md +0 -50
- package/node_modules/strip-ansi/index.d.ts +0 -15
- package/node_modules/strip-ansi/index.js +0 -19
- package/node_modules/strip-ansi/license +0 -9
- package/node_modules/strip-ansi/package.json +0 -59
- package/node_modules/strip-ansi/readme.md +0 -37
- package/node_modules/strtok3/LICENSE.txt +0 -21
- package/node_modules/strtok3/README.md +0 -399
- package/node_modules/strtok3/lib/AbstractTokenizer.d.ts +0 -76
- package/node_modules/strtok3/lib/AbstractTokenizer.js +0 -111
- package/node_modules/strtok3/lib/BlobTokenizer.d.ts +0 -29
- package/node_modules/strtok3/lib/BlobTokenizer.js +0 -53
- package/node_modules/strtok3/lib/BufferTokenizer.d.ts +0 -29
- package/node_modules/strtok3/lib/BufferTokenizer.js +0 -52
- package/node_modules/strtok3/lib/FileTokenizer.d.ts +0 -37
- package/node_modules/strtok3/lib/FileTokenizer.js +0 -61
- package/node_modules/strtok3/lib/ReadStreamTokenizer.d.ts +0 -34
- package/node_modules/strtok3/lib/ReadStreamTokenizer.js +0 -107
- package/node_modules/strtok3/lib/core.d.ts +0 -40
- package/node_modules/strtok3/lib/core.js +0 -62
- package/node_modules/strtok3/lib/index.d.ts +0 -16
- package/node_modules/strtok3/lib/index.js +0 -22
- package/node_modules/strtok3/lib/stream/AbstractStreamReader.d.ts +0 -54
- package/node_modules/strtok3/lib/stream/AbstractStreamReader.js +0 -71
- package/node_modules/strtok3/lib/stream/Deferred.d.ts +0 -6
- package/node_modules/strtok3/lib/stream/Deferred.js +0 -10
- package/node_modules/strtok3/lib/stream/Errors.d.ts +0 -10
- package/node_modules/strtok3/lib/stream/Errors.js +0 -16
- package/node_modules/strtok3/lib/stream/StreamReader.d.ts +0 -29
- package/node_modules/strtok3/lib/stream/StreamReader.js +0 -83
- package/node_modules/strtok3/lib/stream/WebStreamByobReader.d.ts +0 -14
- package/node_modules/strtok3/lib/stream/WebStreamByobReader.js +0 -27
- package/node_modules/strtok3/lib/stream/WebStreamDefaultReader.d.ts +0 -19
- package/node_modules/strtok3/lib/stream/WebStreamDefaultReader.js +0 -62
- package/node_modules/strtok3/lib/stream/WebStreamReader.d.ts +0 -14
- package/node_modules/strtok3/lib/stream/WebStreamReader.js +0 -13
- package/node_modules/strtok3/lib/stream/WebStreamReaderFactory.d.ts +0 -5
- package/node_modules/strtok3/lib/stream/WebStreamReaderFactory.js +0 -19
- package/node_modules/strtok3/lib/stream/index.d.ts +0 -6
- package/node_modules/strtok3/lib/stream/index.js +0 -5
- package/node_modules/strtok3/lib/types.d.ts +0 -139
- package/node_modules/strtok3/lib/types.js +0 -1
- package/node_modules/strtok3/package.json +0 -94
- package/node_modules/supports-color/browser.js +0 -5
- package/node_modules/supports-color/index.js +0 -135
- package/node_modules/supports-color/license +0 -9
- package/node_modules/supports-color/package.json +0 -53
- package/node_modules/supports-color/readme.md +0 -76
- package/node_modules/thenify/LICENSE +0 -22
- package/node_modules/thenify/README.md +0 -120
- package/node_modules/thenify/index.js +0 -77
- package/node_modules/thenify/package.json +0 -31
- package/node_modules/thenify-all/LICENSE +0 -22
- package/node_modules/thenify-all/README.md +0 -66
- package/node_modules/thenify-all/index.js +0 -73
- package/node_modules/thenify-all/package.json +0 -34
- package/node_modules/token-types/LICENSE.txt +0 -9
- package/node_modules/token-types/README.md +0 -120
- package/node_modules/token-types/lib/index.d.ts +0 -135
- package/node_modules/token-types/lib/index.js +0 -401
- package/node_modules/token-types/package.json +0 -81
- package/node_modules/uint8array-extras/index.d.ts +0 -331
- package/node_modules/uint8array-extras/index.js +0 -318
- package/node_modules/uint8array-extras/license +0 -9
- package/node_modules/uint8array-extras/package.json +0 -54
- package/node_modules/uint8array-extras/readme.md +0 -318
- package/node_modules/uuid/LICENSE.md +0 -9
- package/node_modules/uuid/README.md +0 -491
- package/node_modules/uuid/dist/index.d.ts +0 -15
- package/node_modules/uuid/dist/index.js +0 -14
- package/node_modules/uuid/dist/max.d.ts +0 -2
- package/node_modules/uuid/dist/max.js +0 -1
- package/node_modules/uuid/dist/md5.d.ts +0 -2
- package/node_modules/uuid/dist/md5.js +0 -135
- package/node_modules/uuid/dist/nil.d.ts +0 -2
- package/node_modules/uuid/dist/nil.js +0 -1
- package/node_modules/uuid/dist/parse.d.ts +0 -3
- package/node_modules/uuid/dist/parse.js +0 -9
- package/node_modules/uuid/dist/regex.d.ts +0 -2
- package/node_modules/uuid/dist/regex.js +0 -1
- package/node_modules/uuid/dist/rng.d.ts +0 -1
- package/node_modules/uuid/dist/rng.js +0 -4
- package/node_modules/uuid/dist/sha1.d.ts +0 -2
- package/node_modules/uuid/dist/sha1.js +0 -70
- package/node_modules/uuid/dist/stringify.d.ts +0 -3
- package/node_modules/uuid/dist/stringify.js +0 -35
- package/node_modules/uuid/dist/types.d.ts +0 -22
- package/node_modules/uuid/dist/types.js +0 -1
- package/node_modules/uuid/dist/uuid-bin.d.ts +0 -1
- package/node_modules/uuid/dist/uuid-bin.js +0 -70
- package/node_modules/uuid/dist/v1.d.ts +0 -11
- package/node_modules/uuid/dist/v1.js +0 -83
- package/node_modules/uuid/dist/v1ToV6.d.ts +0 -3
- package/node_modules/uuid/dist/v1ToV6.js +0 -10
- package/node_modules/uuid/dist/v3.d.ts +0 -9
- package/node_modules/uuid/dist/v3.js +0 -9
- package/node_modules/uuid/dist/v35.d.ts +0 -7
- package/node_modules/uuid/dist/v35.js +0 -39
- package/node_modules/uuid/dist/v4.d.ts +0 -4
- package/node_modules/uuid/dist/v4.js +0 -29
- package/node_modules/uuid/dist/v5.d.ts +0 -9
- package/node_modules/uuid/dist/v5.js +0 -9
- package/node_modules/uuid/dist/v6.d.ts +0 -4
- package/node_modules/uuid/dist/v6.js +0 -20
- package/node_modules/uuid/dist/v6ToV1.d.ts +0 -2
- package/node_modules/uuid/dist/v6ToV1.js +0 -10
- package/node_modules/uuid/dist/v7.d.ts +0 -9
- package/node_modules/uuid/dist/v7.js +0 -65
- package/node_modules/uuid/dist/validate.d.ts +0 -2
- package/node_modules/uuid/dist/validate.js +0 -5
- package/node_modules/uuid/dist/version.d.ts +0 -2
- package/node_modules/uuid/dist/version.js +0 -8
- package/node_modules/uuid/dist-node/bin/uuid +0 -2
- package/node_modules/uuid/dist-node/index.js +0 -14
- package/node_modules/uuid/dist-node/max.js +0 -1
- package/node_modules/uuid/dist-node/md5.js +0 -11
- package/node_modules/uuid/dist-node/nil.js +0 -1
- package/node_modules/uuid/dist-node/parse.js +0 -9
- package/node_modules/uuid/dist-node/regex.js +0 -1
- package/node_modules/uuid/dist-node/rng.js +0 -4
- package/node_modules/uuid/dist-node/sha1.js +0 -11
- package/node_modules/uuid/dist-node/stringify.js +0 -35
- package/node_modules/uuid/dist-node/types.js +0 -1
- package/node_modules/uuid/dist-node/uuid-bin.js +0 -70
- package/node_modules/uuid/dist-node/v1.js +0 -83
- package/node_modules/uuid/dist-node/v1ToV6.js +0 -10
- package/node_modules/uuid/dist-node/v3.js +0 -9
- package/node_modules/uuid/dist-node/v35.js +0 -39
- package/node_modules/uuid/dist-node/v4.js +0 -29
- package/node_modules/uuid/dist-node/v5.js +0 -9
- package/node_modules/uuid/dist-node/v6.js +0 -20
- package/node_modules/uuid/dist-node/v6ToV1.js +0 -10
- package/node_modules/uuid/dist-node/v7.js +0 -65
- package/node_modules/uuid/dist-node/validate.js +0 -5
- package/node_modules/uuid/dist-node/version.js +0 -8
- package/node_modules/uuid/package.json +0 -110
- package/node_modules/wrap-ansi/index.js +0 -216
- package/node_modules/wrap-ansi/license +0 -9
- package/node_modules/wrap-ansi/node_modules/ansi-regex/index.d.ts +0 -37
- package/node_modules/wrap-ansi/node_modules/ansi-regex/index.js +0 -10
- package/node_modules/wrap-ansi/node_modules/ansi-regex/license +0 -9
- package/node_modules/wrap-ansi/node_modules/ansi-regex/package.json +0 -55
- package/node_modules/wrap-ansi/node_modules/ansi-regex/readme.md +0 -78
- package/node_modules/wrap-ansi/node_modules/strip-ansi/index.d.ts +0 -17
- package/node_modules/wrap-ansi/node_modules/strip-ansi/index.js +0 -4
- package/node_modules/wrap-ansi/node_modules/strip-ansi/license +0 -9
- package/node_modules/wrap-ansi/node_modules/strip-ansi/package.json +0 -54
- package/node_modules/wrap-ansi/node_modules/strip-ansi/readme.md +0 -46
- package/node_modules/wrap-ansi/package.json +0 -62
- package/node_modules/wrap-ansi/readme.md +0 -91
- package/node_modules/wrappy/README.md +0 -36
- package/node_modules/wrappy/package.json +0 -29
- package/node_modules/wrappy/wrappy.js +0 -33
- package/node_modules/y18n/LICENSE +0 -13
- package/node_modules/y18n/README.md +0 -127
- package/node_modules/y18n/build/index.cjs +0 -203
- package/node_modules/y18n/build/lib/cjs.js +0 -6
- package/node_modules/y18n/build/lib/index.js +0 -174
- package/node_modules/y18n/build/lib/platform-shims/node.js +0 -19
- package/node_modules/y18n/index.mjs +0 -8
- package/node_modules/y18n/package.json +0 -70
- package/node_modules/yargs/LICENSE +0 -21
- package/node_modules/yargs/README.md +0 -202
- package/node_modules/yargs/browser.mjs +0 -7
- package/node_modules/yargs/build/index.cjs +0 -2920
- package/node_modules/yargs/build/lib/argsert.js +0 -62
- package/node_modules/yargs/build/lib/command.js +0 -382
- package/node_modules/yargs/build/lib/completion-templates.js +0 -47
- package/node_modules/yargs/build/lib/completion.js +0 -128
- package/node_modules/yargs/build/lib/middleware.js +0 -53
- package/node_modules/yargs/build/lib/parse-command.js +0 -32
- package/node_modules/yargs/build/lib/typings/common-types.js +0 -9
- package/node_modules/yargs/build/lib/typings/yargs-parser-types.js +0 -1
- package/node_modules/yargs/build/lib/usage.js +0 -548
- package/node_modules/yargs/build/lib/utils/apply-extends.js +0 -59
- package/node_modules/yargs/build/lib/utils/is-promise.js +0 -5
- package/node_modules/yargs/build/lib/utils/levenshtein.js +0 -26
- package/node_modules/yargs/build/lib/utils/obj-filter.js +0 -10
- package/node_modules/yargs/build/lib/utils/process-argv.js +0 -17
- package/node_modules/yargs/build/lib/utils/set-blocking.js +0 -12
- package/node_modules/yargs/build/lib/utils/which-module.js +0 -10
- package/node_modules/yargs/build/lib/validation.js +0 -308
- package/node_modules/yargs/build/lib/yargs-factory.js +0 -1143
- package/node_modules/yargs/build/lib/yerror.js +0 -7
- package/node_modules/yargs/helpers/helpers.mjs +0 -10
- package/node_modules/yargs/helpers/index.js +0 -14
- package/node_modules/yargs/helpers/package.json +0 -3
- package/node_modules/yargs/index.cjs +0 -39
- package/node_modules/yargs/index.mjs +0 -8
- package/node_modules/yargs/lib/platform-shims/browser.mjs +0 -92
- package/node_modules/yargs/lib/platform-shims/esm.mjs +0 -67
- package/node_modules/yargs/locales/be.json +0 -46
- package/node_modules/yargs/locales/de.json +0 -46
- package/node_modules/yargs/locales/en.json +0 -51
- package/node_modules/yargs/locales/es.json +0 -46
- package/node_modules/yargs/locales/fi.json +0 -49
- package/node_modules/yargs/locales/fr.json +0 -53
- package/node_modules/yargs/locales/hi.json +0 -49
- package/node_modules/yargs/locales/hu.json +0 -46
- package/node_modules/yargs/locales/id.json +0 -50
- package/node_modules/yargs/locales/it.json +0 -46
- package/node_modules/yargs/locales/ja.json +0 -51
- package/node_modules/yargs/locales/ko.json +0 -49
- package/node_modules/yargs/locales/nb.json +0 -44
- package/node_modules/yargs/locales/nl.json +0 -49
- package/node_modules/yargs/locales/nn.json +0 -44
- package/node_modules/yargs/locales/pirate.json +0 -13
- package/node_modules/yargs/locales/pl.json +0 -49
- package/node_modules/yargs/locales/pt.json +0 -45
- package/node_modules/yargs/locales/pt_BR.json +0 -48
- package/node_modules/yargs/locales/ru.json +0 -46
- package/node_modules/yargs/locales/th.json +0 -46
- package/node_modules/yargs/locales/tr.json +0 -48
- package/node_modules/yargs/locales/zh_CN.json +0 -48
- package/node_modules/yargs/locales/zh_TW.json +0 -47
- package/node_modules/yargs/package.json +0 -122
- package/node_modules/yargs/yargs +0 -9
- package/node_modules/yargs-parser/LICENSE.txt +0 -14
- package/node_modules/yargs-parser/README.md +0 -518
- package/node_modules/yargs-parser/browser.js +0 -29
- package/node_modules/yargs-parser/build/index.cjs +0 -1042
- package/node_modules/yargs-parser/build/lib/index.js +0 -59
- package/node_modules/yargs-parser/build/lib/string-utils.js +0 -65
- package/node_modules/yargs-parser/build/lib/tokenize-arg-string.js +0 -40
- package/node_modules/yargs-parser/build/lib/yargs-parser-types.js +0 -12
- package/node_modules/yargs-parser/build/lib/yargs-parser.js +0 -1037
- package/node_modules/yargs-parser/package.json +0 -87
- package/node_modules/yauzl/LICENSE +0 -21
- package/node_modules/yauzl/README.md +0 -658
- package/node_modules/yauzl/index.js +0 -796
- package/node_modules/yauzl/package.json +0 -40
- /package/node_modules/{once → isexe}/LICENSE +0 -0
- /package/node_modules/{ansi-styles → path-key}/license +0 -0
- /package/node_modules/{cli-highlight/node_modules/chalk → shebang-regex}/license +0 -0
- /package/node_modules/{wrappy → which}/LICENSE +0 -0
|
@@ -0,0 +1,1803 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@earendil-works/pi-coding-agent",
|
|
3
|
+
"version": "0.75.4",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "@earendil-works/pi-coding-agent",
|
|
9
|
+
"version": "0.75.4",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@earendil-works/pi-agent-core": "^0.75.4",
|
|
13
|
+
"@earendil-works/pi-ai": "^0.75.4",
|
|
14
|
+
"@earendil-works/pi-tui": "^0.75.4",
|
|
15
|
+
"@silvia-odwyer/photon-node": "0.3.4",
|
|
16
|
+
"chalk": "5.6.2",
|
|
17
|
+
"cross-spawn": "7.0.6",
|
|
18
|
+
"diff": "8.0.4",
|
|
19
|
+
"glob": "13.0.6",
|
|
20
|
+
"highlight.js": "10.7.3",
|
|
21
|
+
"hosted-git-info": "9.0.3",
|
|
22
|
+
"ignore": "7.0.5",
|
|
23
|
+
"jiti": "2.7.0",
|
|
24
|
+
"minimatch": "10.2.5",
|
|
25
|
+
"proper-lockfile": "4.1.2",
|
|
26
|
+
"typebox": "1.1.38",
|
|
27
|
+
"undici": "8.3.0",
|
|
28
|
+
"yaml": "2.9.0"
|
|
29
|
+
},
|
|
30
|
+
"optionalDependencies": {
|
|
31
|
+
"@mariozechner/clipboard": "0.3.6"
|
|
32
|
+
},
|
|
33
|
+
"bin": {
|
|
34
|
+
"pi": "dist/cli.js"
|
|
35
|
+
},
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=22.19.0"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"node_modules/@anthropic-ai/sdk": {
|
|
41
|
+
"version": "0.91.1",
|
|
42
|
+
"resolved": "https://registry.npmjs.org/@anthropic-ai/sdk/-/sdk-0.91.1.tgz",
|
|
43
|
+
"integrity": "sha512-LAmu761tSN9r66ixvmciswUj/ZC+1Q4iAfpedTfSVLeswRwnY3n2Nb6Tsk+cLPP28aLOPWeMgIuTuCcMC6W/iw==",
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"json-schema-to-ts": "^3.1.1"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"zod": "^3.25.0 || ^4.0.0"
|
|
50
|
+
},
|
|
51
|
+
"peerDependenciesMeta": {
|
|
52
|
+
"zod": {
|
|
53
|
+
"optional": true
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"bin": {
|
|
57
|
+
"anthropic-ai-sdk": "bin/cli"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"node_modules/@aws-crypto/crc32": {
|
|
61
|
+
"version": "5.2.0",
|
|
62
|
+
"resolved": "https://registry.npmjs.org/@aws-crypto/crc32/-/crc32-5.2.0.tgz",
|
|
63
|
+
"integrity": "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==",
|
|
64
|
+
"license": "Apache-2.0",
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@aws-crypto/util": "^5.2.0",
|
|
67
|
+
"@aws-sdk/types": "^3.222.0",
|
|
68
|
+
"tslib": "^2.6.2"
|
|
69
|
+
},
|
|
70
|
+
"engines": {
|
|
71
|
+
"node": ">=16.0.0"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"node_modules/@aws-crypto/sha256-browser": {
|
|
75
|
+
"version": "5.2.0",
|
|
76
|
+
"resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz",
|
|
77
|
+
"integrity": "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==",
|
|
78
|
+
"license": "Apache-2.0",
|
|
79
|
+
"dependencies": {
|
|
80
|
+
"@aws-crypto/sha256-js": "^5.2.0",
|
|
81
|
+
"@aws-crypto/supports-web-crypto": "^5.2.0",
|
|
82
|
+
"@aws-crypto/util": "^5.2.0",
|
|
83
|
+
"@aws-sdk/types": "^3.222.0",
|
|
84
|
+
"@aws-sdk/util-locate-window": "^3.0.0",
|
|
85
|
+
"@smithy/util-utf8": "^2.0.0",
|
|
86
|
+
"tslib": "^2.6.2"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"node_modules/@aws-crypto/sha256-js": {
|
|
90
|
+
"version": "5.2.0",
|
|
91
|
+
"resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz",
|
|
92
|
+
"integrity": "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==",
|
|
93
|
+
"license": "Apache-2.0",
|
|
94
|
+
"dependencies": {
|
|
95
|
+
"@aws-crypto/util": "^5.2.0",
|
|
96
|
+
"@aws-sdk/types": "^3.222.0",
|
|
97
|
+
"tslib": "^2.6.2"
|
|
98
|
+
},
|
|
99
|
+
"engines": {
|
|
100
|
+
"node": ">=16.0.0"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"node_modules/@aws-crypto/supports-web-crypto": {
|
|
104
|
+
"version": "5.2.0",
|
|
105
|
+
"resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz",
|
|
106
|
+
"integrity": "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==",
|
|
107
|
+
"license": "Apache-2.0",
|
|
108
|
+
"dependencies": {
|
|
109
|
+
"tslib": "^2.6.2"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"node_modules/@aws-crypto/util": {
|
|
113
|
+
"version": "5.2.0",
|
|
114
|
+
"resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-5.2.0.tgz",
|
|
115
|
+
"integrity": "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==",
|
|
116
|
+
"license": "Apache-2.0",
|
|
117
|
+
"dependencies": {
|
|
118
|
+
"@aws-sdk/types": "^3.222.0",
|
|
119
|
+
"@smithy/util-utf8": "^2.0.0",
|
|
120
|
+
"tslib": "^2.6.2"
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
"node_modules/@aws-sdk/client-bedrock-runtime": {
|
|
124
|
+
"version": "3.1048.0",
|
|
125
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/client-bedrock-runtime/-/client-bedrock-runtime-3.1048.0.tgz",
|
|
126
|
+
"integrity": "sha512-u+NT61JZEkRFtpL0CAw1N1dwxnaLgwVXQl/zjJxTGgLyS/jTIdg2SdoEoCTHxgDyCnqa1HEi9QOoE9/pYRNpOQ==",
|
|
127
|
+
"license": "Apache-2.0",
|
|
128
|
+
"dependencies": {
|
|
129
|
+
"@aws-crypto/sha256-browser": "5.2.0",
|
|
130
|
+
"@aws-crypto/sha256-js": "5.2.0",
|
|
131
|
+
"@aws-sdk/core": "^3.974.11",
|
|
132
|
+
"@aws-sdk/credential-provider-node": "^3.972.42",
|
|
133
|
+
"@aws-sdk/eventstream-handler-node": "^3.972.16",
|
|
134
|
+
"@aws-sdk/middleware-eventstream": "^3.972.12",
|
|
135
|
+
"@aws-sdk/middleware-websocket": "^3.972.19",
|
|
136
|
+
"@aws-sdk/token-providers": "3.1048.0",
|
|
137
|
+
"@aws-sdk/types": "^3.973.8",
|
|
138
|
+
"@smithy/core": "^3.24.2",
|
|
139
|
+
"@smithy/fetch-http-handler": "^5.4.2",
|
|
140
|
+
"@smithy/node-http-handler": "^4.7.2",
|
|
141
|
+
"@smithy/types": "^4.14.1",
|
|
142
|
+
"tslib": "^2.6.2"
|
|
143
|
+
},
|
|
144
|
+
"engines": {
|
|
145
|
+
"node": ">=20.0.0"
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
"node_modules/@aws-sdk/core": {
|
|
149
|
+
"version": "3.974.11",
|
|
150
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.974.11.tgz",
|
|
151
|
+
"integrity": "sha512-QpnINq5FZH6EOaDEkmHdT7eUunbvD27pDNQypaWjFyYz7Zl1q3UCMQErBZxpmfGfI7MvI2TlK8KTkgNpv8b1ug==",
|
|
152
|
+
"license": "Apache-2.0",
|
|
153
|
+
"dependencies": {
|
|
154
|
+
"@aws-sdk/types": "^3.973.8",
|
|
155
|
+
"@aws-sdk/xml-builder": "^3.972.24",
|
|
156
|
+
"@aws/lambda-invoke-store": "^0.2.2",
|
|
157
|
+
"@smithy/core": "^3.24.2",
|
|
158
|
+
"@smithy/signature-v4": "^5.4.2",
|
|
159
|
+
"@smithy/types": "^4.14.1",
|
|
160
|
+
"bowser": "^2.11.0",
|
|
161
|
+
"tslib": "^2.6.2"
|
|
162
|
+
},
|
|
163
|
+
"engines": {
|
|
164
|
+
"node": ">=20.0.0"
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"node_modules/@aws-sdk/credential-provider-env": {
|
|
168
|
+
"version": "3.972.37",
|
|
169
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.972.37.tgz",
|
|
170
|
+
"integrity": "sha512-/jpPvEh6f7ntmIzf7dNxoNX6Q8vt8UpesCjbW6mFfk4V1NW6bIy9qxcQ6WbA8As5yQhsZOe+xeNd4xHX8kdY2Q==",
|
|
171
|
+
"license": "Apache-2.0",
|
|
172
|
+
"dependencies": {
|
|
173
|
+
"@aws-sdk/core": "^3.974.11",
|
|
174
|
+
"@aws-sdk/types": "^3.973.8",
|
|
175
|
+
"@smithy/core": "^3.24.2",
|
|
176
|
+
"@smithy/types": "^4.14.1",
|
|
177
|
+
"tslib": "^2.6.2"
|
|
178
|
+
},
|
|
179
|
+
"engines": {
|
|
180
|
+
"node": ">=20.0.0"
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
"node_modules/@aws-sdk/credential-provider-http": {
|
|
184
|
+
"version": "3.972.39",
|
|
185
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.972.39.tgz",
|
|
186
|
+
"integrity": "sha512-pIgTpisWyWg7X1bUbzSjuUYosYTD0Ghz2M0hkSTmb3a6i3qV3uU+NYJPI/E2XSC0HcsZh5rsLPzeXrkb2DS0Cg==",
|
|
187
|
+
"license": "Apache-2.0",
|
|
188
|
+
"dependencies": {
|
|
189
|
+
"@aws-sdk/core": "^3.974.11",
|
|
190
|
+
"@aws-sdk/types": "^3.973.8",
|
|
191
|
+
"@smithy/core": "^3.24.2",
|
|
192
|
+
"@smithy/fetch-http-handler": "^5.4.2",
|
|
193
|
+
"@smithy/node-http-handler": "^4.7.2",
|
|
194
|
+
"@smithy/types": "^4.14.1",
|
|
195
|
+
"tslib": "^2.6.2"
|
|
196
|
+
},
|
|
197
|
+
"engines": {
|
|
198
|
+
"node": ">=20.0.0"
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
"node_modules/@aws-sdk/credential-provider-ini": {
|
|
202
|
+
"version": "3.972.41",
|
|
203
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.972.41.tgz",
|
|
204
|
+
"integrity": "sha512-u2tyjaxJJzW8UtW4SM1ZcPMDwO6y+kV+llvou+Adts0FAKyzes5jG4izQN+KX3yE8ZROpS5y1LJ//xL2iSf76w==",
|
|
205
|
+
"license": "Apache-2.0",
|
|
206
|
+
"dependencies": {
|
|
207
|
+
"@aws-sdk/core": "^3.974.11",
|
|
208
|
+
"@aws-sdk/credential-provider-env": "^3.972.37",
|
|
209
|
+
"@aws-sdk/credential-provider-http": "^3.972.39",
|
|
210
|
+
"@aws-sdk/credential-provider-login": "^3.972.41",
|
|
211
|
+
"@aws-sdk/credential-provider-process": "^3.972.37",
|
|
212
|
+
"@aws-sdk/credential-provider-sso": "^3.972.41",
|
|
213
|
+
"@aws-sdk/credential-provider-web-identity": "^3.972.41",
|
|
214
|
+
"@aws-sdk/nested-clients": "^3.997.9",
|
|
215
|
+
"@aws-sdk/types": "^3.973.8",
|
|
216
|
+
"@smithy/core": "^3.24.2",
|
|
217
|
+
"@smithy/credential-provider-imds": "^4.3.2",
|
|
218
|
+
"@smithy/types": "^4.14.1",
|
|
219
|
+
"tslib": "^2.6.2"
|
|
220
|
+
},
|
|
221
|
+
"engines": {
|
|
222
|
+
"node": ">=20.0.0"
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
"node_modules/@aws-sdk/credential-provider-login": {
|
|
226
|
+
"version": "3.972.41",
|
|
227
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-login/-/credential-provider-login-3.972.41.tgz",
|
|
228
|
+
"integrity": "sha512-0LBitxXiAiaE5nlFPfpNIww/8FRY/I7WIndWsc9GmNFOM7cE1wNpVNQEGEk9Outg5l8xl+3vybxFyUy4l9q/LQ==",
|
|
229
|
+
"license": "Apache-2.0",
|
|
230
|
+
"dependencies": {
|
|
231
|
+
"@aws-sdk/core": "^3.974.11",
|
|
232
|
+
"@aws-sdk/nested-clients": "^3.997.9",
|
|
233
|
+
"@aws-sdk/types": "^3.973.8",
|
|
234
|
+
"@smithy/core": "^3.24.2",
|
|
235
|
+
"@smithy/types": "^4.14.1",
|
|
236
|
+
"tslib": "^2.6.2"
|
|
237
|
+
},
|
|
238
|
+
"engines": {
|
|
239
|
+
"node": ">=20.0.0"
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
"node_modules/@aws-sdk/credential-provider-node": {
|
|
243
|
+
"version": "3.972.42",
|
|
244
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.972.42.tgz",
|
|
245
|
+
"integrity": "sha512-D4oon2zbqqsWOJUM99Gm3/ZyJ0IJvTXVN3PyloGb3kQEyI36fjCZheZj422lAgTWWd6TSHgiImLt3RIaLdv3dQ==",
|
|
246
|
+
"license": "Apache-2.0",
|
|
247
|
+
"dependencies": {
|
|
248
|
+
"@aws-sdk/credential-provider-env": "^3.972.37",
|
|
249
|
+
"@aws-sdk/credential-provider-http": "^3.972.39",
|
|
250
|
+
"@aws-sdk/credential-provider-ini": "^3.972.41",
|
|
251
|
+
"@aws-sdk/credential-provider-process": "^3.972.37",
|
|
252
|
+
"@aws-sdk/credential-provider-sso": "^3.972.41",
|
|
253
|
+
"@aws-sdk/credential-provider-web-identity": "^3.972.41",
|
|
254
|
+
"@aws-sdk/types": "^3.973.8",
|
|
255
|
+
"@smithy/core": "^3.24.2",
|
|
256
|
+
"@smithy/credential-provider-imds": "^4.3.2",
|
|
257
|
+
"@smithy/types": "^4.14.1",
|
|
258
|
+
"tslib": "^2.6.2"
|
|
259
|
+
},
|
|
260
|
+
"engines": {
|
|
261
|
+
"node": ">=20.0.0"
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
"node_modules/@aws-sdk/credential-provider-process": {
|
|
265
|
+
"version": "3.972.37",
|
|
266
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.972.37.tgz",
|
|
267
|
+
"integrity": "sha512-7nVaHBUaWIddASYfVaA9O4D5ZVjewU3sCol9WqZPGfW0nR+0WqE0xHZnD/U2L33PlOB8KNXGKZ6wOES/QijKzg==",
|
|
268
|
+
"license": "Apache-2.0",
|
|
269
|
+
"dependencies": {
|
|
270
|
+
"@aws-sdk/core": "^3.974.11",
|
|
271
|
+
"@aws-sdk/types": "^3.973.8",
|
|
272
|
+
"@smithy/core": "^3.24.2",
|
|
273
|
+
"@smithy/types": "^4.14.1",
|
|
274
|
+
"tslib": "^2.6.2"
|
|
275
|
+
},
|
|
276
|
+
"engines": {
|
|
277
|
+
"node": ">=20.0.0"
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"node_modules/@aws-sdk/credential-provider-sso": {
|
|
281
|
+
"version": "3.972.41",
|
|
282
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.972.41.tgz",
|
|
283
|
+
"integrity": "sha512-IOWAWEHe5LkjSKkkUUX9ciV6Y1scHTsnfEkdt5yyC4Slrc7AGbkLPrpntjqh18ksJAMOaVhoBsO8p2WyTcY2wQ==",
|
|
284
|
+
"license": "Apache-2.0",
|
|
285
|
+
"dependencies": {
|
|
286
|
+
"@aws-sdk/core": "^3.974.11",
|
|
287
|
+
"@aws-sdk/nested-clients": "^3.997.9",
|
|
288
|
+
"@aws-sdk/token-providers": "3.1048.0",
|
|
289
|
+
"@aws-sdk/types": "^3.973.8",
|
|
290
|
+
"@smithy/core": "^3.24.2",
|
|
291
|
+
"@smithy/types": "^4.14.1",
|
|
292
|
+
"tslib": "^2.6.2"
|
|
293
|
+
},
|
|
294
|
+
"engines": {
|
|
295
|
+
"node": ">=20.0.0"
|
|
296
|
+
}
|
|
297
|
+
},
|
|
298
|
+
"node_modules/@aws-sdk/credential-provider-web-identity": {
|
|
299
|
+
"version": "3.972.41",
|
|
300
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.972.41.tgz",
|
|
301
|
+
"integrity": "sha512-mbACk9Yypa8nm4iGZLs0PofOXEcTDOUw6wDnsPXNDNSd2WNXs1tSo+6nc/fh0jLYdfVZThhBL98PHW4aXFsG5A==",
|
|
302
|
+
"license": "Apache-2.0",
|
|
303
|
+
"dependencies": {
|
|
304
|
+
"@aws-sdk/core": "^3.974.11",
|
|
305
|
+
"@aws-sdk/nested-clients": "^3.997.9",
|
|
306
|
+
"@aws-sdk/types": "^3.973.8",
|
|
307
|
+
"@smithy/core": "^3.24.2",
|
|
308
|
+
"@smithy/types": "^4.14.1",
|
|
309
|
+
"tslib": "^2.6.2"
|
|
310
|
+
},
|
|
311
|
+
"engines": {
|
|
312
|
+
"node": ">=20.0.0"
|
|
313
|
+
}
|
|
314
|
+
},
|
|
315
|
+
"node_modules/@aws-sdk/eventstream-handler-node": {
|
|
316
|
+
"version": "3.972.16",
|
|
317
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/eventstream-handler-node/-/eventstream-handler-node-3.972.16.tgz",
|
|
318
|
+
"integrity": "sha512-yedpPgKftqjU5SlPFHfqWpOw6xSCRieWRG1euWOlXn4WJxt2VX92VprCa2PpSOXjVCAeK6dTjW9eJRXVig9yGA==",
|
|
319
|
+
"license": "Apache-2.0",
|
|
320
|
+
"dependencies": {
|
|
321
|
+
"@aws-sdk/types": "^3.973.8",
|
|
322
|
+
"@smithy/core": "^3.24.2",
|
|
323
|
+
"@smithy/types": "^4.14.1",
|
|
324
|
+
"tslib": "^2.6.2"
|
|
325
|
+
},
|
|
326
|
+
"engines": {
|
|
327
|
+
"node": ">=20.0.0"
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
"node_modules/@aws-sdk/middleware-eventstream": {
|
|
331
|
+
"version": "3.972.12",
|
|
332
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-eventstream/-/middleware-eventstream-3.972.12.tgz",
|
|
333
|
+
"integrity": "sha512-tHTHHCHNrq6XklQvlzHBDJG4Iuhh7NVPRdtmvP+nHFA+5sxPlIDzlAHHgfoYHGvT3NXP1yVP/L5c3opUn6T3Qg==",
|
|
334
|
+
"license": "Apache-2.0",
|
|
335
|
+
"dependencies": {
|
|
336
|
+
"@aws-sdk/types": "^3.973.8",
|
|
337
|
+
"@smithy/core": "^3.24.2",
|
|
338
|
+
"@smithy/types": "^4.14.1",
|
|
339
|
+
"tslib": "^2.6.2"
|
|
340
|
+
},
|
|
341
|
+
"engines": {
|
|
342
|
+
"node": ">=20.0.0"
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
"node_modules/@aws-sdk/middleware-websocket": {
|
|
346
|
+
"version": "3.972.19",
|
|
347
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-websocket/-/middleware-websocket-3.972.19.tgz",
|
|
348
|
+
"integrity": "sha512-mkEhOGYozqKQkbFaVrjwr0faiwwZza1v5/jSY6Tucm3bD+uKTazIUH/4Yo6aMnQD2ua2W9cMP6s8mvwTcjtqHw==",
|
|
349
|
+
"license": "Apache-2.0",
|
|
350
|
+
"dependencies": {
|
|
351
|
+
"@aws-sdk/core": "^3.974.11",
|
|
352
|
+
"@aws-sdk/types": "^3.973.8",
|
|
353
|
+
"@smithy/core": "^3.24.2",
|
|
354
|
+
"@smithy/fetch-http-handler": "^5.4.2",
|
|
355
|
+
"@smithy/signature-v4": "^5.4.2",
|
|
356
|
+
"@smithy/types": "^4.14.1",
|
|
357
|
+
"tslib": "^2.6.2"
|
|
358
|
+
},
|
|
359
|
+
"engines": {
|
|
360
|
+
"node": ">= 14.0.0"
|
|
361
|
+
}
|
|
362
|
+
},
|
|
363
|
+
"node_modules/@aws-sdk/nested-clients": {
|
|
364
|
+
"version": "3.997.9",
|
|
365
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.997.9.tgz",
|
|
366
|
+
"integrity": "sha512-jPR3rnmRI4hWYyzfmTGBr7NblMp8QYYeflHXba1H6+7CGrWVqWKQzaXFQ4qbExqPRsXN3T3L3JxFhr6aouXUGQ==",
|
|
367
|
+
"license": "Apache-2.0",
|
|
368
|
+
"dependencies": {
|
|
369
|
+
"@aws-crypto/sha256-browser": "5.2.0",
|
|
370
|
+
"@aws-crypto/sha256-js": "5.2.0",
|
|
371
|
+
"@aws-sdk/core": "^3.974.11",
|
|
372
|
+
"@aws-sdk/signature-v4-multi-region": "^3.996.27",
|
|
373
|
+
"@aws-sdk/types": "^3.973.8",
|
|
374
|
+
"@smithy/core": "^3.24.2",
|
|
375
|
+
"@smithy/fetch-http-handler": "^5.4.2",
|
|
376
|
+
"@smithy/node-http-handler": "^4.7.2",
|
|
377
|
+
"@smithy/types": "^4.14.1",
|
|
378
|
+
"tslib": "^2.6.2"
|
|
379
|
+
},
|
|
380
|
+
"engines": {
|
|
381
|
+
"node": ">=20.0.0"
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
"node_modules/@aws-sdk/signature-v4-multi-region": {
|
|
385
|
+
"version": "3.996.27",
|
|
386
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/signature-v4-multi-region/-/signature-v4-multi-region-3.996.27.tgz",
|
|
387
|
+
"integrity": "sha512-0Phbz4t6HI3D3skxvG2uI+VWU034/nSIw1T8d+FPzzQG9EQTrw94o9mOKO2Gv3n3Oc8P7JD7RAUxkoneLWv5Eg==",
|
|
388
|
+
"license": "Apache-2.0",
|
|
389
|
+
"dependencies": {
|
|
390
|
+
"@aws-sdk/types": "^3.973.8",
|
|
391
|
+
"@smithy/core": "^3.24.2",
|
|
392
|
+
"@smithy/signature-v4": "^5.4.2",
|
|
393
|
+
"@smithy/types": "^4.14.1",
|
|
394
|
+
"tslib": "^2.6.2"
|
|
395
|
+
},
|
|
396
|
+
"engines": {
|
|
397
|
+
"node": ">=20.0.0"
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
"node_modules/@aws-sdk/token-providers": {
|
|
401
|
+
"version": "3.1048.0",
|
|
402
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.1048.0.tgz",
|
|
403
|
+
"integrity": "sha512-k0y/GcuesuSfWyUM0WamrGyeZmltRYaPbHO82UDA6mZ/doB+FOHKutikPAtSXMn/hDz970cF+iRuuiYO9VEbAA==",
|
|
404
|
+
"license": "Apache-2.0",
|
|
405
|
+
"dependencies": {
|
|
406
|
+
"@aws-sdk/core": "^3.974.11",
|
|
407
|
+
"@aws-sdk/nested-clients": "^3.997.9",
|
|
408
|
+
"@aws-sdk/types": "^3.973.8",
|
|
409
|
+
"@smithy/core": "^3.24.2",
|
|
410
|
+
"@smithy/types": "^4.14.1",
|
|
411
|
+
"tslib": "^2.6.2"
|
|
412
|
+
},
|
|
413
|
+
"engines": {
|
|
414
|
+
"node": ">=20.0.0"
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
"node_modules/@aws-sdk/types": {
|
|
418
|
+
"version": "3.973.8",
|
|
419
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.8.tgz",
|
|
420
|
+
"integrity": "sha512-gjlAdtHMbtR9X5iIhVUvbVcy55KnznpC6bkDUWW9z915bi0ckdUr5cjf16Kp6xq0bP5HBD2xzgbL9F9Quv5vUw==",
|
|
421
|
+
"license": "Apache-2.0",
|
|
422
|
+
"dependencies": {
|
|
423
|
+
"@smithy/types": "^4.14.1",
|
|
424
|
+
"tslib": "^2.6.2"
|
|
425
|
+
},
|
|
426
|
+
"engines": {
|
|
427
|
+
"node": ">=20.0.0"
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
"node_modules/@aws-sdk/util-locate-window": {
|
|
431
|
+
"version": "3.965.5",
|
|
432
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.965.5.tgz",
|
|
433
|
+
"integrity": "sha512-WhlJNNINQB+9qtLtZJcpQdgZw3SCDCpXdUJP7cToGwHbCWCnRckGlc6Bx/OhWwIYFNAn+FIydY8SZ0QmVu3xTQ==",
|
|
434
|
+
"license": "Apache-2.0",
|
|
435
|
+
"dependencies": {
|
|
436
|
+
"tslib": "^2.6.2"
|
|
437
|
+
},
|
|
438
|
+
"engines": {
|
|
439
|
+
"node": ">=20.0.0"
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
"node_modules/@aws-sdk/xml-builder": {
|
|
443
|
+
"version": "3.972.24",
|
|
444
|
+
"resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.972.24.tgz",
|
|
445
|
+
"integrity": "sha512-V8z5YcDPfsvzrBlj0xR1vhRtocblhYbqdreCJB/voGd4Sr5zjNAeWxexbnqVtskTJe0vFb5KMqbSL++ePl+zRw==",
|
|
446
|
+
"license": "Apache-2.0",
|
|
447
|
+
"dependencies": {
|
|
448
|
+
"@nodable/entities": "2.1.0",
|
|
449
|
+
"@smithy/types": "^4.14.1",
|
|
450
|
+
"fast-xml-parser": "5.7.3",
|
|
451
|
+
"tslib": "^2.6.2"
|
|
452
|
+
},
|
|
453
|
+
"engines": {
|
|
454
|
+
"node": ">=20.0.0"
|
|
455
|
+
}
|
|
456
|
+
},
|
|
457
|
+
"node_modules/@aws/lambda-invoke-store": {
|
|
458
|
+
"version": "0.2.4",
|
|
459
|
+
"resolved": "https://registry.npmjs.org/@aws/lambda-invoke-store/-/lambda-invoke-store-0.2.4.tgz",
|
|
460
|
+
"integrity": "sha512-iY8yvjE0y651BixKNPgmv1WrQc+GZ142sb0z4gYnChDDY2YqI4P/jsSopBWrKfAt7LOJAkOXt7rC/hms+WclQQ==",
|
|
461
|
+
"license": "Apache-2.0",
|
|
462
|
+
"engines": {
|
|
463
|
+
"node": ">=18.0.0"
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
"node_modules/@babel/runtime": {
|
|
467
|
+
"version": "7.29.2",
|
|
468
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz",
|
|
469
|
+
"integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==",
|
|
470
|
+
"license": "MIT",
|
|
471
|
+
"engines": {
|
|
472
|
+
"node": ">=6.9.0"
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
"node_modules/@earendil-works/pi-agent-core": {
|
|
476
|
+
"version": "0.75.4",
|
|
477
|
+
"resolved": "https://registry.npmjs.org/@earendil-works/pi-agent-core/-/pi-agent-core-0.75.4.tgz",
|
|
478
|
+
"license": "MIT",
|
|
479
|
+
"dependencies": {
|
|
480
|
+
"@earendil-works/pi-ai": "^0.75.4",
|
|
481
|
+
"ignore": "7.0.5",
|
|
482
|
+
"typebox": "1.1.38",
|
|
483
|
+
"yaml": "2.9.0"
|
|
484
|
+
},
|
|
485
|
+
"engines": {
|
|
486
|
+
"node": ">=22.19.0"
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
"node_modules/@earendil-works/pi-ai": {
|
|
490
|
+
"version": "0.75.4",
|
|
491
|
+
"resolved": "https://registry.npmjs.org/@earendil-works/pi-ai/-/pi-ai-0.75.4.tgz",
|
|
492
|
+
"license": "MIT",
|
|
493
|
+
"dependencies": {
|
|
494
|
+
"@anthropic-ai/sdk": "0.91.1",
|
|
495
|
+
"@aws-sdk/client-bedrock-runtime": "3.1048.0",
|
|
496
|
+
"@google/genai": "1.52.0",
|
|
497
|
+
"@mistralai/mistralai": "2.2.1",
|
|
498
|
+
"http-proxy-agent": "7.0.2",
|
|
499
|
+
"https-proxy-agent": "7.0.6",
|
|
500
|
+
"openai": "6.26.0",
|
|
501
|
+
"partial-json": "0.1.7",
|
|
502
|
+
"typebox": "1.1.38"
|
|
503
|
+
},
|
|
504
|
+
"bin": {
|
|
505
|
+
"pi-ai": "./dist/cli.js"
|
|
506
|
+
},
|
|
507
|
+
"engines": {
|
|
508
|
+
"node": ">=22.19.0"
|
|
509
|
+
}
|
|
510
|
+
},
|
|
511
|
+
"node_modules/@earendil-works/pi-tui": {
|
|
512
|
+
"version": "0.75.4",
|
|
513
|
+
"resolved": "https://registry.npmjs.org/@earendil-works/pi-tui/-/pi-tui-0.75.4.tgz",
|
|
514
|
+
"license": "MIT",
|
|
515
|
+
"dependencies": {
|
|
516
|
+
"get-east-asian-width": "1.6.0",
|
|
517
|
+
"marked": "15.0.12"
|
|
518
|
+
},
|
|
519
|
+
"optionalDependencies": {
|
|
520
|
+
"koffi": "2.16.2"
|
|
521
|
+
},
|
|
522
|
+
"engines": {
|
|
523
|
+
"node": ">=22.19.0"
|
|
524
|
+
}
|
|
525
|
+
},
|
|
526
|
+
"node_modules/@google/genai": {
|
|
527
|
+
"version": "1.52.0",
|
|
528
|
+
"resolved": "https://registry.npmjs.org/@google/genai/-/genai-1.52.0.tgz",
|
|
529
|
+
"integrity": "sha512-gwSvbpiN/17O9TbsqSsE/OzZcpv5Fo4RQjdngGgogtuB9RsyJ8ZHhX5KjHj1bp5N9snN2eK8LDGXSaWW2hof8Q==",
|
|
530
|
+
"license": "Apache-2.0",
|
|
531
|
+
"dependencies": {
|
|
532
|
+
"google-auth-library": "^10.3.0",
|
|
533
|
+
"p-retry": "^4.6.2",
|
|
534
|
+
"protobufjs": "^7.5.4",
|
|
535
|
+
"ws": "^8.18.0"
|
|
536
|
+
},
|
|
537
|
+
"peerDependencies": {
|
|
538
|
+
"@modelcontextprotocol/sdk": "^1.25.2"
|
|
539
|
+
},
|
|
540
|
+
"peerDependenciesMeta": {
|
|
541
|
+
"@modelcontextprotocol/sdk": {
|
|
542
|
+
"optional": true
|
|
543
|
+
}
|
|
544
|
+
},
|
|
545
|
+
"engines": {
|
|
546
|
+
"node": ">=20.0.0"
|
|
547
|
+
},
|
|
548
|
+
"hasInstallScript": true
|
|
549
|
+
},
|
|
550
|
+
"node_modules/@mariozechner/clipboard": {
|
|
551
|
+
"version": "0.3.6",
|
|
552
|
+
"resolved": "https://registry.npmjs.org/@mariozechner/clipboard/-/clipboard-0.3.6.tgz",
|
|
553
|
+
"integrity": "sha512-MXdtr+6+ntlIVHdrZYuZNQydu6o8yZswFJ2Ln81j2O/Y9B/LDHvEaIm95xWNPkjGTWriSOeLnQJRFs6dYb60bg==",
|
|
554
|
+
"license": "MIT",
|
|
555
|
+
"optionalDependencies": {
|
|
556
|
+
"@mariozechner/clipboard-darwin-arm64": "0.3.6",
|
|
557
|
+
"@mariozechner/clipboard-darwin-universal": "0.3.6",
|
|
558
|
+
"@mariozechner/clipboard-darwin-x64": "0.3.6",
|
|
559
|
+
"@mariozechner/clipboard-linux-arm64-gnu": "0.3.6",
|
|
560
|
+
"@mariozechner/clipboard-linux-arm64-musl": "0.3.6",
|
|
561
|
+
"@mariozechner/clipboard-linux-riscv64-gnu": "0.3.6",
|
|
562
|
+
"@mariozechner/clipboard-linux-x64-gnu": "0.3.6",
|
|
563
|
+
"@mariozechner/clipboard-linux-x64-musl": "0.3.6",
|
|
564
|
+
"@mariozechner/clipboard-win32-arm64-msvc": "0.3.6",
|
|
565
|
+
"@mariozechner/clipboard-win32-x64-msvc": "0.3.6"
|
|
566
|
+
},
|
|
567
|
+
"engines": {
|
|
568
|
+
"node": ">= 10"
|
|
569
|
+
},
|
|
570
|
+
"optional": true
|
|
571
|
+
},
|
|
572
|
+
"node_modules/@mariozechner/clipboard-darwin-arm64": {
|
|
573
|
+
"version": "0.3.6",
|
|
574
|
+
"resolved": "https://registry.npmjs.org/@mariozechner/clipboard-darwin-arm64/-/clipboard-darwin-arm64-0.3.6.tgz",
|
|
575
|
+
"integrity": "sha512-HjaisYCAbHi/1+N1yDAQHc8ZXGffufIUT5NSOSVR3f3AuMDusxTtnbK8tZ7JFDkShua1oNGZoNwQHsc8MPtE0Q==",
|
|
576
|
+
"license": "MIT",
|
|
577
|
+
"engines": {
|
|
578
|
+
"node": ">= 10"
|
|
579
|
+
},
|
|
580
|
+
"os": [
|
|
581
|
+
"darwin"
|
|
582
|
+
],
|
|
583
|
+
"cpu": [
|
|
584
|
+
"arm64"
|
|
585
|
+
],
|
|
586
|
+
"optional": true
|
|
587
|
+
},
|
|
588
|
+
"node_modules/@mariozechner/clipboard-darwin-universal": {
|
|
589
|
+
"version": "0.3.6",
|
|
590
|
+
"resolved": "https://registry.npmjs.org/@mariozechner/clipboard-darwin-universal/-/clipboard-darwin-universal-0.3.6.tgz",
|
|
591
|
+
"integrity": "sha512-8BWtPjOtJOJoykml3w0fx0zRrfWP31mXrJwfoA7xzNprkZw1uolCNfgmjDiVBseoKjp16EGITz7bN+61qn8dWA==",
|
|
592
|
+
"license": "MIT",
|
|
593
|
+
"engines": {
|
|
594
|
+
"node": ">= 10"
|
|
595
|
+
},
|
|
596
|
+
"os": [
|
|
597
|
+
"darwin"
|
|
598
|
+
],
|
|
599
|
+
"optional": true
|
|
600
|
+
},
|
|
601
|
+
"node_modules/@mariozechner/clipboard-darwin-x64": {
|
|
602
|
+
"version": "0.3.6",
|
|
603
|
+
"resolved": "https://registry.npmjs.org/@mariozechner/clipboard-darwin-x64/-/clipboard-darwin-x64-0.3.6.tgz",
|
|
604
|
+
"integrity": "sha512-p9syiZD1kU4I+1ya7f7g+zD1GiUvR8fdlRlNmgsZNWlyjtc8rlV2EjTLd/35x1LsdBq020GVvtzp0ZmPgBI09Q==",
|
|
605
|
+
"license": "MIT",
|
|
606
|
+
"engines": {
|
|
607
|
+
"node": ">= 10"
|
|
608
|
+
},
|
|
609
|
+
"os": [
|
|
610
|
+
"darwin"
|
|
611
|
+
],
|
|
612
|
+
"cpu": [
|
|
613
|
+
"x64"
|
|
614
|
+
],
|
|
615
|
+
"optional": true
|
|
616
|
+
},
|
|
617
|
+
"node_modules/@mariozechner/clipboard-linux-arm64-gnu": {
|
|
618
|
+
"version": "0.3.6",
|
|
619
|
+
"resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-arm64-gnu/-/clipboard-linux-arm64-gnu-0.3.6.tgz",
|
|
620
|
+
"integrity": "sha512-5JFf5rGofrm+V29HNF+wLthXphHdQpMbKDUYJ5tML6/Z5DLlLOV/9Ak4kDPtYyZ+Dzf+kAusE0VsFg4+tfP1IA==",
|
|
621
|
+
"license": "MIT",
|
|
622
|
+
"engines": {
|
|
623
|
+
"node": ">= 10"
|
|
624
|
+
},
|
|
625
|
+
"os": [
|
|
626
|
+
"linux"
|
|
627
|
+
],
|
|
628
|
+
"cpu": [
|
|
629
|
+
"arm64"
|
|
630
|
+
],
|
|
631
|
+
"optional": true
|
|
632
|
+
},
|
|
633
|
+
"node_modules/@mariozechner/clipboard-linux-arm64-musl": {
|
|
634
|
+
"version": "0.3.6",
|
|
635
|
+
"resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-arm64-musl/-/clipboard-linux-arm64-musl-0.3.6.tgz",
|
|
636
|
+
"integrity": "sha512-JlVjxxw0GbGC0djXYWRIqyteO3J1KZ/QG3udlEFaOD5TLOM1FnmXXAPDQBqr+aBVr720ef9K00dirYnJ0LDCtw==",
|
|
637
|
+
"license": "MIT",
|
|
638
|
+
"engines": {
|
|
639
|
+
"node": ">= 10"
|
|
640
|
+
},
|
|
641
|
+
"os": [
|
|
642
|
+
"linux"
|
|
643
|
+
],
|
|
644
|
+
"cpu": [
|
|
645
|
+
"arm64"
|
|
646
|
+
],
|
|
647
|
+
"optional": true
|
|
648
|
+
},
|
|
649
|
+
"node_modules/@mariozechner/clipboard-linux-riscv64-gnu": {
|
|
650
|
+
"version": "0.3.6",
|
|
651
|
+
"resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-riscv64-gnu/-/clipboard-linux-riscv64-gnu-0.3.6.tgz",
|
|
652
|
+
"integrity": "sha512-4t8BUi5zZ+L77otFQVnVSlaTyAX4TVk9EqQm4syMrEQp96trFEHEwwNHcNEBGzYv5+K7mxay50TthYkz47OWzQ==",
|
|
653
|
+
"license": "MIT",
|
|
654
|
+
"engines": {
|
|
655
|
+
"node": ">= 10"
|
|
656
|
+
},
|
|
657
|
+
"os": [
|
|
658
|
+
"linux"
|
|
659
|
+
],
|
|
660
|
+
"cpu": [
|
|
661
|
+
"riscv64"
|
|
662
|
+
],
|
|
663
|
+
"optional": true
|
|
664
|
+
},
|
|
665
|
+
"node_modules/@mariozechner/clipboard-linux-x64-gnu": {
|
|
666
|
+
"version": "0.3.6",
|
|
667
|
+
"resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-x64-gnu/-/clipboard-linux-x64-gnu-0.3.6.tgz",
|
|
668
|
+
"integrity": "sha512-trtPwcNLW37irwQCJLtCxLw757jjJZk3TSnY/MU9bhtWtA3K9b/eLW0e4RGhUXDoFRds9opNWWaUDuFLa8dm0w==",
|
|
669
|
+
"license": "MIT",
|
|
670
|
+
"engines": {
|
|
671
|
+
"node": ">= 10"
|
|
672
|
+
},
|
|
673
|
+
"os": [
|
|
674
|
+
"linux"
|
|
675
|
+
],
|
|
676
|
+
"cpu": [
|
|
677
|
+
"x64"
|
|
678
|
+
],
|
|
679
|
+
"optional": true
|
|
680
|
+
},
|
|
681
|
+
"node_modules/@mariozechner/clipboard-linux-x64-musl": {
|
|
682
|
+
"version": "0.3.6",
|
|
683
|
+
"resolved": "https://registry.npmjs.org/@mariozechner/clipboard-linux-x64-musl/-/clipboard-linux-x64-musl-0.3.6.tgz",
|
|
684
|
+
"integrity": "sha512-WfnzIvOCCWQiN0MmltCEo6cLceUDbYe+I7xyFZjaps5A+2Op/M2CY7Rey+C4ucQhrvmpoHmTSFgY9ODWk7snoA==",
|
|
685
|
+
"license": "MIT",
|
|
686
|
+
"engines": {
|
|
687
|
+
"node": ">= 10"
|
|
688
|
+
},
|
|
689
|
+
"os": [
|
|
690
|
+
"linux"
|
|
691
|
+
],
|
|
692
|
+
"cpu": [
|
|
693
|
+
"x64"
|
|
694
|
+
],
|
|
695
|
+
"optional": true
|
|
696
|
+
},
|
|
697
|
+
"node_modules/@mariozechner/clipboard-win32-arm64-msvc": {
|
|
698
|
+
"version": "0.3.6",
|
|
699
|
+
"resolved": "https://registry.npmjs.org/@mariozechner/clipboard-win32-arm64-msvc/-/clipboard-win32-arm64-msvc-0.3.6.tgz",
|
|
700
|
+
"integrity": "sha512-+8+1aHYsBPUjmW3otmWlg+Hijt0iJvoBBs5e0mxFeUd4gDaKMB8Bn6x7c6KVtscg7E5j5NFXnwQqNSIAO4p8zQ==",
|
|
701
|
+
"license": "MIT",
|
|
702
|
+
"engines": {
|
|
703
|
+
"node": ">= 10"
|
|
704
|
+
},
|
|
705
|
+
"os": [
|
|
706
|
+
"win32"
|
|
707
|
+
],
|
|
708
|
+
"cpu": [
|
|
709
|
+
"arm64"
|
|
710
|
+
],
|
|
711
|
+
"optional": true
|
|
712
|
+
},
|
|
713
|
+
"node_modules/@mariozechner/clipboard-win32-x64-msvc": {
|
|
714
|
+
"version": "0.3.6",
|
|
715
|
+
"resolved": "https://registry.npmjs.org/@mariozechner/clipboard-win32-x64-msvc/-/clipboard-win32-x64-msvc-0.3.6.tgz",
|
|
716
|
+
"integrity": "sha512-S4xfPmERC8ZkiLHe3vekZCjdDwNEETCuvCgQK2kP6/TnvmUkq1y2Pk+DjM4t8uh9KMX9bH4zs5ePcKa8GTXmfg==",
|
|
717
|
+
"license": "MIT",
|
|
718
|
+
"engines": {
|
|
719
|
+
"node": ">= 10"
|
|
720
|
+
},
|
|
721
|
+
"os": [
|
|
722
|
+
"win32"
|
|
723
|
+
],
|
|
724
|
+
"cpu": [
|
|
725
|
+
"x64"
|
|
726
|
+
],
|
|
727
|
+
"optional": true
|
|
728
|
+
},
|
|
729
|
+
"node_modules/@mistralai/mistralai": {
|
|
730
|
+
"version": "2.2.1",
|
|
731
|
+
"resolved": "https://registry.npmjs.org/@mistralai/mistralai/-/mistralai-2.2.1.tgz",
|
|
732
|
+
"integrity": "sha512-uKU8CZmL2RzYKmplsU01hii4p3pe4HqJefpWNRWXm1Tcm0Sm4xXfwSLIy4k7ZCPlbETCGcp69E7hZs+WOJ5itQ==",
|
|
733
|
+
"license": "Apache-2.0",
|
|
734
|
+
"dependencies": {
|
|
735
|
+
"ws": "^8.18.0",
|
|
736
|
+
"zod": "^3.25.0 || ^4.0.0",
|
|
737
|
+
"zod-to-json-schema": "^3.25.0"
|
|
738
|
+
}
|
|
739
|
+
},
|
|
740
|
+
"node_modules/@nodable/entities": {
|
|
741
|
+
"version": "2.1.0",
|
|
742
|
+
"resolved": "https://registry.npmjs.org/@nodable/entities/-/entities-2.1.0.tgz",
|
|
743
|
+
"integrity": "sha512-nyT7T3nbMyBI/lvr6L5TyWbFJAI9FTgVRakNoBqCD+PmID8DzFrrNdLLtHMwMszOtqZa8PAOV24ZqDnQrhQINA==",
|
|
744
|
+
"license": "MIT",
|
|
745
|
+
"funding": [
|
|
746
|
+
{
|
|
747
|
+
"type": "github",
|
|
748
|
+
"url": "https://github.com/sponsors/nodable"
|
|
749
|
+
}
|
|
750
|
+
]
|
|
751
|
+
},
|
|
752
|
+
"node_modules/@protobufjs/aspromise": {
|
|
753
|
+
"version": "1.1.2",
|
|
754
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
|
|
755
|
+
"integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==",
|
|
756
|
+
"license": "BSD-3-Clause"
|
|
757
|
+
},
|
|
758
|
+
"node_modules/@protobufjs/base64": {
|
|
759
|
+
"version": "1.1.2",
|
|
760
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz",
|
|
761
|
+
"integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==",
|
|
762
|
+
"license": "BSD-3-Clause"
|
|
763
|
+
},
|
|
764
|
+
"node_modules/@protobufjs/codegen": {
|
|
765
|
+
"version": "2.0.5",
|
|
766
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.5.tgz",
|
|
767
|
+
"integrity": "sha512-zgXFLzW3Ap33e6d0Wlj4MGIm6Ce8O89n/apUaGNB/jx+hw+ruWEp7EwGUshdLKVRCxZW12fp9r40E1mQrf/34g==",
|
|
768
|
+
"license": "BSD-3-Clause"
|
|
769
|
+
},
|
|
770
|
+
"node_modules/@protobufjs/eventemitter": {
|
|
771
|
+
"version": "1.1.0",
|
|
772
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz",
|
|
773
|
+
"integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==",
|
|
774
|
+
"license": "BSD-3-Clause"
|
|
775
|
+
},
|
|
776
|
+
"node_modules/@protobufjs/fetch": {
|
|
777
|
+
"version": "1.1.1",
|
|
778
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.1.tgz",
|
|
779
|
+
"integrity": "sha512-GpptLrs57adMSuHi3VNj0mAF8dwh36LMaYF6XyJ6JMWlVsc+t42tm1HSEDmOs3A8fC9yyeisgLhsTVQokOZ0zw==",
|
|
780
|
+
"license": "BSD-3-Clause",
|
|
781
|
+
"dependencies": {
|
|
782
|
+
"@protobufjs/aspromise": "^1.1.1"
|
|
783
|
+
}
|
|
784
|
+
},
|
|
785
|
+
"node_modules/@protobufjs/float": {
|
|
786
|
+
"version": "1.0.2",
|
|
787
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz",
|
|
788
|
+
"integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==",
|
|
789
|
+
"license": "BSD-3-Clause"
|
|
790
|
+
},
|
|
791
|
+
"node_modules/@protobufjs/inquire": {
|
|
792
|
+
"version": "1.1.2",
|
|
793
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.2.tgz",
|
|
794
|
+
"integrity": "sha512-pa0vFRuws4wkvaXKK1uXZMAwAX4/t8ANaJo45iw/oQHNQ9q5xUzwgFmVJGXiga2BeN+zpX7Vf9vmsiIa2J+MUw==",
|
|
795
|
+
"license": "BSD-3-Clause"
|
|
796
|
+
},
|
|
797
|
+
"node_modules/@protobufjs/path": {
|
|
798
|
+
"version": "1.1.2",
|
|
799
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz",
|
|
800
|
+
"integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==",
|
|
801
|
+
"license": "BSD-3-Clause"
|
|
802
|
+
},
|
|
803
|
+
"node_modules/@protobufjs/pool": {
|
|
804
|
+
"version": "1.1.0",
|
|
805
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz",
|
|
806
|
+
"integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==",
|
|
807
|
+
"license": "BSD-3-Clause"
|
|
808
|
+
},
|
|
809
|
+
"node_modules/@protobufjs/utf8": {
|
|
810
|
+
"version": "1.1.1",
|
|
811
|
+
"resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.1.tgz",
|
|
812
|
+
"integrity": "sha512-oOAWABowe8EAbMyWKM0tYDKi8Yaox52D+HWZhAIJqQXbqe0xI/GV7FhLWqlEKreMkfDjshR5FKgi3mnle0h6Eg==",
|
|
813
|
+
"license": "BSD-3-Clause"
|
|
814
|
+
},
|
|
815
|
+
"node_modules/@silvia-odwyer/photon-node": {
|
|
816
|
+
"version": "0.3.4",
|
|
817
|
+
"resolved": "https://registry.npmjs.org/@silvia-odwyer/photon-node/-/photon-node-0.3.4.tgz",
|
|
818
|
+
"integrity": "sha512-bnly4BKB3KDTFxrUIcgCLbaeVVS8lrAkri1pEzskpmxu9MdfGQTy8b8EgcD83ywD3RPMsIulY8xJH5Awa+t9fA==",
|
|
819
|
+
"license": "Apache-2.0"
|
|
820
|
+
},
|
|
821
|
+
"node_modules/@smithy/core": {
|
|
822
|
+
"version": "3.24.3",
|
|
823
|
+
"resolved": "https://registry.npmjs.org/@smithy/core/-/core-3.24.3.tgz",
|
|
824
|
+
"integrity": "sha512-Ep/7tPamGY8mgESE3LyLKtxJyy6U52WWAqr/3wial47Sj4u3PiIF73AOGI27UyLy9duTkhZbgzodOfLV4TduZg==",
|
|
825
|
+
"license": "Apache-2.0",
|
|
826
|
+
"dependencies": {
|
|
827
|
+
"@aws-crypto/crc32": "5.2.0",
|
|
828
|
+
"@smithy/types": "^4.14.2",
|
|
829
|
+
"tslib": "^2.6.2"
|
|
830
|
+
},
|
|
831
|
+
"engines": {
|
|
832
|
+
"node": ">=18.0.0"
|
|
833
|
+
}
|
|
834
|
+
},
|
|
835
|
+
"node_modules/@smithy/credential-provider-imds": {
|
|
836
|
+
"version": "4.3.3",
|
|
837
|
+
"resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-4.3.3.tgz",
|
|
838
|
+
"integrity": "sha512-I2Bti0DKFo2IJyN28ijCsx51BAumEYR4/1yZ1FXyBygy9MqbnMqCev4JPth/MbpRfBSRAX35hITSnAdJRo1u5w==",
|
|
839
|
+
"license": "Apache-2.0",
|
|
840
|
+
"dependencies": {
|
|
841
|
+
"@smithy/core": "^3.24.3",
|
|
842
|
+
"@smithy/types": "^4.14.2",
|
|
843
|
+
"tslib": "^2.6.2"
|
|
844
|
+
},
|
|
845
|
+
"engines": {
|
|
846
|
+
"node": ">=18.0.0"
|
|
847
|
+
}
|
|
848
|
+
},
|
|
849
|
+
"node_modules/@smithy/fetch-http-handler": {
|
|
850
|
+
"version": "5.4.3",
|
|
851
|
+
"resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-5.4.3.tgz",
|
|
852
|
+
"integrity": "sha512-F+DRf8IJazRJgYog2A/yJK7eYVc0rqTlRzO+5ZxjJd4WkZoKz0IJRncf7G6t1pdVT3kryJcwuTFhN1c5m6N47A==",
|
|
853
|
+
"license": "Apache-2.0",
|
|
854
|
+
"dependencies": {
|
|
855
|
+
"@smithy/core": "^3.24.3",
|
|
856
|
+
"@smithy/types": "^4.14.2",
|
|
857
|
+
"tslib": "^2.6.2"
|
|
858
|
+
},
|
|
859
|
+
"engines": {
|
|
860
|
+
"node": ">=18.0.0"
|
|
861
|
+
}
|
|
862
|
+
},
|
|
863
|
+
"node_modules/@smithy/is-array-buffer": {
|
|
864
|
+
"version": "2.2.0",
|
|
865
|
+
"resolved": "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz",
|
|
866
|
+
"integrity": "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==",
|
|
867
|
+
"license": "Apache-2.0",
|
|
868
|
+
"dependencies": {
|
|
869
|
+
"tslib": "^2.6.2"
|
|
870
|
+
},
|
|
871
|
+
"engines": {
|
|
872
|
+
"node": ">=14.0.0"
|
|
873
|
+
}
|
|
874
|
+
},
|
|
875
|
+
"node_modules/@smithy/node-http-handler": {
|
|
876
|
+
"version": "4.7.3",
|
|
877
|
+
"resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.7.3.tgz",
|
|
878
|
+
"integrity": "sha512-/jPhevcTFPMVl6KNjbaI47iOg1zxC7IsnX4PQDGVZKMFceOXtB8IEYaB7a9VvkP/3oC60WzTeKocvSI7vLT0vA==",
|
|
879
|
+
"license": "Apache-2.0",
|
|
880
|
+
"dependencies": {
|
|
881
|
+
"@smithy/core": "^3.24.3",
|
|
882
|
+
"@smithy/types": "^4.14.2",
|
|
883
|
+
"tslib": "^2.6.2"
|
|
884
|
+
},
|
|
885
|
+
"engines": {
|
|
886
|
+
"node": ">=18.0.0"
|
|
887
|
+
}
|
|
888
|
+
},
|
|
889
|
+
"node_modules/@smithy/signature-v4": {
|
|
890
|
+
"version": "5.4.3",
|
|
891
|
+
"resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-5.4.3.tgz",
|
|
892
|
+
"integrity": "sha512-53+75QuPl6DL+ct6vVEB51FDO5oulXr20TPV46VvJZg76lIlXNWfxi8j+G2V/t0I2qxCBOa3vX/8bmjrpFVo9g==",
|
|
893
|
+
"license": "Apache-2.0",
|
|
894
|
+
"dependencies": {
|
|
895
|
+
"@smithy/core": "^3.24.3",
|
|
896
|
+
"@smithy/types": "^4.14.2",
|
|
897
|
+
"tslib": "^2.6.2"
|
|
898
|
+
},
|
|
899
|
+
"engines": {
|
|
900
|
+
"node": ">=18.0.0"
|
|
901
|
+
}
|
|
902
|
+
},
|
|
903
|
+
"node_modules/@smithy/types": {
|
|
904
|
+
"version": "4.14.2",
|
|
905
|
+
"resolved": "https://registry.npmjs.org/@smithy/types/-/types-4.14.2.tgz",
|
|
906
|
+
"integrity": "sha512-P+otAxbV4CqBybp7EkcJCrig63yE2E7PuNVOmilVMRcx/O+QDzGULTrKsq4DV13gSfak9ObPrWaHl/9bL5YcWw==",
|
|
907
|
+
"license": "Apache-2.0",
|
|
908
|
+
"dependencies": {
|
|
909
|
+
"tslib": "^2.6.2"
|
|
910
|
+
},
|
|
911
|
+
"engines": {
|
|
912
|
+
"node": ">=18.0.0"
|
|
913
|
+
}
|
|
914
|
+
},
|
|
915
|
+
"node_modules/@smithy/util-buffer-from": {
|
|
916
|
+
"version": "2.2.0",
|
|
917
|
+
"resolved": "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz",
|
|
918
|
+
"integrity": "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==",
|
|
919
|
+
"license": "Apache-2.0",
|
|
920
|
+
"dependencies": {
|
|
921
|
+
"@smithy/is-array-buffer": "^2.2.0",
|
|
922
|
+
"tslib": "^2.6.2"
|
|
923
|
+
},
|
|
924
|
+
"engines": {
|
|
925
|
+
"node": ">=14.0.0"
|
|
926
|
+
}
|
|
927
|
+
},
|
|
928
|
+
"node_modules/@smithy/util-utf8": {
|
|
929
|
+
"version": "2.3.0",
|
|
930
|
+
"resolved": "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz",
|
|
931
|
+
"integrity": "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==",
|
|
932
|
+
"license": "Apache-2.0",
|
|
933
|
+
"dependencies": {
|
|
934
|
+
"@smithy/util-buffer-from": "^2.2.0",
|
|
935
|
+
"tslib": "^2.6.2"
|
|
936
|
+
},
|
|
937
|
+
"engines": {
|
|
938
|
+
"node": ">=14.0.0"
|
|
939
|
+
}
|
|
940
|
+
},
|
|
941
|
+
"node_modules/@types/node": {
|
|
942
|
+
"version": "22.19.19",
|
|
943
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.19.tgz",
|
|
944
|
+
"integrity": "sha512-dyh/xO2Fh5bYrfWaaqGrRQQGkNdmYw6AmaAUvYeUMNTWQtvb796ikLdmTchRmOlOiIJ1TDXfWgVx1QkUlQ6Hew==",
|
|
945
|
+
"license": "MIT",
|
|
946
|
+
"dependencies": {
|
|
947
|
+
"undici-types": "~6.21.0"
|
|
948
|
+
}
|
|
949
|
+
},
|
|
950
|
+
"node_modules/agent-base": {
|
|
951
|
+
"version": "7.1.4",
|
|
952
|
+
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
|
|
953
|
+
"integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
|
|
954
|
+
"license": "MIT",
|
|
955
|
+
"engines": {
|
|
956
|
+
"node": ">= 14"
|
|
957
|
+
}
|
|
958
|
+
},
|
|
959
|
+
"node_modules/balanced-match": {
|
|
960
|
+
"version": "4.0.4",
|
|
961
|
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
|
|
962
|
+
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
|
|
963
|
+
"license": "MIT",
|
|
964
|
+
"engines": {
|
|
965
|
+
"node": "18 || 20 || >=22"
|
|
966
|
+
}
|
|
967
|
+
},
|
|
968
|
+
"node_modules/base64-js": {
|
|
969
|
+
"version": "1.5.1",
|
|
970
|
+
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
|
971
|
+
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
|
|
972
|
+
"license": "MIT",
|
|
973
|
+
"funding": [
|
|
974
|
+
{
|
|
975
|
+
"type": "github",
|
|
976
|
+
"url": "https://github.com/sponsors/feross"
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
"type": "patreon",
|
|
980
|
+
"url": "https://www.patreon.com/feross"
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"type": "consulting",
|
|
984
|
+
"url": "https://feross.org/support"
|
|
985
|
+
}
|
|
986
|
+
]
|
|
987
|
+
},
|
|
988
|
+
"node_modules/bignumber.js": {
|
|
989
|
+
"version": "9.3.1",
|
|
990
|
+
"resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.3.1.tgz",
|
|
991
|
+
"integrity": "sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==",
|
|
992
|
+
"license": "MIT",
|
|
993
|
+
"engines": {
|
|
994
|
+
"node": "*"
|
|
995
|
+
}
|
|
996
|
+
},
|
|
997
|
+
"node_modules/bowser": {
|
|
998
|
+
"version": "2.14.1",
|
|
999
|
+
"resolved": "https://registry.npmjs.org/bowser/-/bowser-2.14.1.tgz",
|
|
1000
|
+
"integrity": "sha512-tzPjzCxygAKWFOJP011oxFHs57HzIhOEracIgAePE4pqB3LikALKnSzUyU4MGs9/iCEUuHlAJTjTc5M+u7YEGg==",
|
|
1001
|
+
"license": "MIT"
|
|
1002
|
+
},
|
|
1003
|
+
"node_modules/brace-expansion": {
|
|
1004
|
+
"version": "5.0.6",
|
|
1005
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
|
1006
|
+
"integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
|
|
1007
|
+
"license": "MIT",
|
|
1008
|
+
"dependencies": {
|
|
1009
|
+
"balanced-match": "^4.0.2"
|
|
1010
|
+
},
|
|
1011
|
+
"engines": {
|
|
1012
|
+
"node": "18 || 20 || >=22"
|
|
1013
|
+
}
|
|
1014
|
+
},
|
|
1015
|
+
"node_modules/buffer-equal-constant-time": {
|
|
1016
|
+
"version": "1.0.1",
|
|
1017
|
+
"resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
|
|
1018
|
+
"integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==",
|
|
1019
|
+
"license": "BSD-3-Clause"
|
|
1020
|
+
},
|
|
1021
|
+
"node_modules/chalk": {
|
|
1022
|
+
"version": "5.6.2",
|
|
1023
|
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-5.6.2.tgz",
|
|
1024
|
+
"integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==",
|
|
1025
|
+
"license": "MIT",
|
|
1026
|
+
"engines": {
|
|
1027
|
+
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
|
1028
|
+
},
|
|
1029
|
+
"funding": {
|
|
1030
|
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
|
1031
|
+
}
|
|
1032
|
+
},
|
|
1033
|
+
"node_modules/cross-spawn": {
|
|
1034
|
+
"version": "7.0.6",
|
|
1035
|
+
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
|
|
1036
|
+
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
|
|
1037
|
+
"license": "MIT",
|
|
1038
|
+
"dependencies": {
|
|
1039
|
+
"path-key": "^3.1.0",
|
|
1040
|
+
"shebang-command": "^2.0.0",
|
|
1041
|
+
"which": "^2.0.1"
|
|
1042
|
+
},
|
|
1043
|
+
"engines": {
|
|
1044
|
+
"node": ">= 8"
|
|
1045
|
+
}
|
|
1046
|
+
},
|
|
1047
|
+
"node_modules/data-uri-to-buffer": {
|
|
1048
|
+
"version": "4.0.1",
|
|
1049
|
+
"resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz",
|
|
1050
|
+
"integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==",
|
|
1051
|
+
"license": "MIT",
|
|
1052
|
+
"engines": {
|
|
1053
|
+
"node": ">= 12"
|
|
1054
|
+
}
|
|
1055
|
+
},
|
|
1056
|
+
"node_modules/debug": {
|
|
1057
|
+
"version": "4.4.3",
|
|
1058
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
1059
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
1060
|
+
"license": "MIT",
|
|
1061
|
+
"dependencies": {
|
|
1062
|
+
"ms": "^2.1.3"
|
|
1063
|
+
},
|
|
1064
|
+
"peerDependenciesMeta": {
|
|
1065
|
+
"supports-color": {
|
|
1066
|
+
"optional": true
|
|
1067
|
+
}
|
|
1068
|
+
},
|
|
1069
|
+
"engines": {
|
|
1070
|
+
"node": ">=6.0"
|
|
1071
|
+
}
|
|
1072
|
+
},
|
|
1073
|
+
"node_modules/diff": {
|
|
1074
|
+
"version": "8.0.4",
|
|
1075
|
+
"resolved": "https://registry.npmjs.org/diff/-/diff-8.0.4.tgz",
|
|
1076
|
+
"integrity": "sha512-DPi0FmjiSU5EvQV0++GFDOJ9ASQUVFh5kD+OzOnYdi7n3Wpm9hWWGfB/O2blfHcMVTL5WkQXSnRiK9makhrcnw==",
|
|
1077
|
+
"license": "BSD-3-Clause",
|
|
1078
|
+
"engines": {
|
|
1079
|
+
"node": ">=0.3.1"
|
|
1080
|
+
}
|
|
1081
|
+
},
|
|
1082
|
+
"node_modules/ecdsa-sig-formatter": {
|
|
1083
|
+
"version": "1.0.11",
|
|
1084
|
+
"resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
|
|
1085
|
+
"integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
|
|
1086
|
+
"license": "Apache-2.0",
|
|
1087
|
+
"dependencies": {
|
|
1088
|
+
"safe-buffer": "^5.0.1"
|
|
1089
|
+
}
|
|
1090
|
+
},
|
|
1091
|
+
"node_modules/extend": {
|
|
1092
|
+
"version": "3.0.2",
|
|
1093
|
+
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
|
|
1094
|
+
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
|
|
1095
|
+
"license": "MIT"
|
|
1096
|
+
},
|
|
1097
|
+
"node_modules/fast-xml-builder": {
|
|
1098
|
+
"version": "1.2.0",
|
|
1099
|
+
"resolved": "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.2.0.tgz",
|
|
1100
|
+
"integrity": "sha512-00aAWieqff+ZJhsXA4g1g7M8k+7AYoMUUHF+/zFb5U6Uv/P0Vl4QZo84/IcufzYalLuEj9928bXN9PbbFzMF0Q==",
|
|
1101
|
+
"license": "MIT",
|
|
1102
|
+
"dependencies": {
|
|
1103
|
+
"path-expression-matcher": "^1.5.0",
|
|
1104
|
+
"xml-naming": "^0.1.0"
|
|
1105
|
+
},
|
|
1106
|
+
"funding": [
|
|
1107
|
+
{
|
|
1108
|
+
"type": "github",
|
|
1109
|
+
"url": "https://github.com/sponsors/NaturalIntelligence"
|
|
1110
|
+
}
|
|
1111
|
+
]
|
|
1112
|
+
},
|
|
1113
|
+
"node_modules/fast-xml-parser": {
|
|
1114
|
+
"version": "5.7.3",
|
|
1115
|
+
"resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.7.3.tgz",
|
|
1116
|
+
"integrity": "sha512-C0AaNuC+mscy6vrAQKAc/rMq+zAPHodfHGZu4sGVehvAQt/JLG1O5zEcYcXSY5zSqr4YVgxsB+pHXTq0i7eDlg==",
|
|
1117
|
+
"license": "MIT",
|
|
1118
|
+
"dependencies": {
|
|
1119
|
+
"@nodable/entities": "^2.1.0",
|
|
1120
|
+
"fast-xml-builder": "^1.1.7",
|
|
1121
|
+
"path-expression-matcher": "^1.5.0",
|
|
1122
|
+
"strnum": "^2.2.3"
|
|
1123
|
+
},
|
|
1124
|
+
"bin": {
|
|
1125
|
+
"fxparser": "src/cli/cli.js"
|
|
1126
|
+
},
|
|
1127
|
+
"funding": [
|
|
1128
|
+
{
|
|
1129
|
+
"type": "github",
|
|
1130
|
+
"url": "https://github.com/sponsors/NaturalIntelligence"
|
|
1131
|
+
}
|
|
1132
|
+
]
|
|
1133
|
+
},
|
|
1134
|
+
"node_modules/fetch-blob": {
|
|
1135
|
+
"version": "3.2.0",
|
|
1136
|
+
"resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz",
|
|
1137
|
+
"integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==",
|
|
1138
|
+
"license": "MIT",
|
|
1139
|
+
"dependencies": {
|
|
1140
|
+
"node-domexception": "^1.0.0",
|
|
1141
|
+
"web-streams-polyfill": "^3.0.3"
|
|
1142
|
+
},
|
|
1143
|
+
"engines": {
|
|
1144
|
+
"node": "^12.20 || >= 14.13"
|
|
1145
|
+
},
|
|
1146
|
+
"funding": [
|
|
1147
|
+
{
|
|
1148
|
+
"type": "github",
|
|
1149
|
+
"url": "https://github.com/sponsors/jimmywarting"
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
"type": "paypal",
|
|
1153
|
+
"url": "https://paypal.me/jimmywarting"
|
|
1154
|
+
}
|
|
1155
|
+
]
|
|
1156
|
+
},
|
|
1157
|
+
"node_modules/formdata-polyfill": {
|
|
1158
|
+
"version": "4.0.10",
|
|
1159
|
+
"resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz",
|
|
1160
|
+
"integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==",
|
|
1161
|
+
"license": "MIT",
|
|
1162
|
+
"dependencies": {
|
|
1163
|
+
"fetch-blob": "^3.1.2"
|
|
1164
|
+
},
|
|
1165
|
+
"engines": {
|
|
1166
|
+
"node": ">=12.20.0"
|
|
1167
|
+
}
|
|
1168
|
+
},
|
|
1169
|
+
"node_modules/gaxios": {
|
|
1170
|
+
"version": "7.1.4",
|
|
1171
|
+
"resolved": "https://registry.npmjs.org/gaxios/-/gaxios-7.1.4.tgz",
|
|
1172
|
+
"integrity": "sha512-bTIgTsM2bWn3XklZISBTQX7ZSddGW+IO3bMdGaemHZ3tbqExMENHLx6kKZ/KlejgrMtj8q7wBItt51yegqalrA==",
|
|
1173
|
+
"license": "Apache-2.0",
|
|
1174
|
+
"dependencies": {
|
|
1175
|
+
"extend": "^3.0.2",
|
|
1176
|
+
"https-proxy-agent": "^7.0.1",
|
|
1177
|
+
"node-fetch": "^3.3.2"
|
|
1178
|
+
},
|
|
1179
|
+
"engines": {
|
|
1180
|
+
"node": ">=18"
|
|
1181
|
+
}
|
|
1182
|
+
},
|
|
1183
|
+
"node_modules/gcp-metadata": {
|
|
1184
|
+
"version": "8.1.2",
|
|
1185
|
+
"resolved": "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-8.1.2.tgz",
|
|
1186
|
+
"integrity": "sha512-zV/5HKTfCeKWnxG0Dmrw51hEWFGfcF2xiXqcA3+J90WDuP0SvoiSO5ORvcBsifmx/FoIjgQN3oNOGaQ5PhLFkg==",
|
|
1187
|
+
"license": "Apache-2.0",
|
|
1188
|
+
"dependencies": {
|
|
1189
|
+
"gaxios": "^7.0.0",
|
|
1190
|
+
"google-logging-utils": "^1.0.0",
|
|
1191
|
+
"json-bigint": "^1.0.0"
|
|
1192
|
+
},
|
|
1193
|
+
"engines": {
|
|
1194
|
+
"node": ">=18"
|
|
1195
|
+
}
|
|
1196
|
+
},
|
|
1197
|
+
"node_modules/get-east-asian-width": {
|
|
1198
|
+
"version": "1.6.0",
|
|
1199
|
+
"resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz",
|
|
1200
|
+
"integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==",
|
|
1201
|
+
"license": "MIT",
|
|
1202
|
+
"engines": {
|
|
1203
|
+
"node": ">=18"
|
|
1204
|
+
},
|
|
1205
|
+
"funding": {
|
|
1206
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1207
|
+
}
|
|
1208
|
+
},
|
|
1209
|
+
"node_modules/glob": {
|
|
1210
|
+
"version": "13.0.6",
|
|
1211
|
+
"resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz",
|
|
1212
|
+
"integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==",
|
|
1213
|
+
"license": "BlueOak-1.0.0",
|
|
1214
|
+
"dependencies": {
|
|
1215
|
+
"minimatch": "^10.2.2",
|
|
1216
|
+
"minipass": "^7.1.3",
|
|
1217
|
+
"path-scurry": "^2.0.2"
|
|
1218
|
+
},
|
|
1219
|
+
"engines": {
|
|
1220
|
+
"node": "18 || 20 || >=22"
|
|
1221
|
+
},
|
|
1222
|
+
"funding": {
|
|
1223
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
1224
|
+
}
|
|
1225
|
+
},
|
|
1226
|
+
"node_modules/google-auth-library": {
|
|
1227
|
+
"version": "10.6.2",
|
|
1228
|
+
"resolved": "https://registry.npmjs.org/google-auth-library/-/google-auth-library-10.6.2.tgz",
|
|
1229
|
+
"integrity": "sha512-e27Z6EThmVNNvtYASwQxose/G57rkRuaRbQyxM2bvYLLX/GqWZ5chWq2EBoUchJbCc57eC9ArzO5wMsEmWftCw==",
|
|
1230
|
+
"license": "Apache-2.0",
|
|
1231
|
+
"dependencies": {
|
|
1232
|
+
"base64-js": "^1.3.0",
|
|
1233
|
+
"ecdsa-sig-formatter": "^1.0.11",
|
|
1234
|
+
"gaxios": "^7.1.4",
|
|
1235
|
+
"gcp-metadata": "8.1.2",
|
|
1236
|
+
"google-logging-utils": "1.1.3",
|
|
1237
|
+
"jws": "^4.0.0"
|
|
1238
|
+
},
|
|
1239
|
+
"engines": {
|
|
1240
|
+
"node": ">=18"
|
|
1241
|
+
}
|
|
1242
|
+
},
|
|
1243
|
+
"node_modules/google-logging-utils": {
|
|
1244
|
+
"version": "1.1.3",
|
|
1245
|
+
"resolved": "https://registry.npmjs.org/google-logging-utils/-/google-logging-utils-1.1.3.tgz",
|
|
1246
|
+
"integrity": "sha512-eAmLkjDjAFCVXg7A1unxHsLf961m6y17QFqXqAXGj/gVkKFrEICfStRfwUlGNfeCEjNRa32JEWOUTlYXPyyKvA==",
|
|
1247
|
+
"license": "Apache-2.0",
|
|
1248
|
+
"engines": {
|
|
1249
|
+
"node": ">=14"
|
|
1250
|
+
}
|
|
1251
|
+
},
|
|
1252
|
+
"node_modules/graceful-fs": {
|
|
1253
|
+
"version": "4.2.11",
|
|
1254
|
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
|
1255
|
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
1256
|
+
"license": "ISC"
|
|
1257
|
+
},
|
|
1258
|
+
"node_modules/highlight.js": {
|
|
1259
|
+
"version": "10.7.3",
|
|
1260
|
+
"resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz",
|
|
1261
|
+
"integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==",
|
|
1262
|
+
"license": "BSD-3-Clause",
|
|
1263
|
+
"engines": {
|
|
1264
|
+
"node": "*"
|
|
1265
|
+
}
|
|
1266
|
+
},
|
|
1267
|
+
"node_modules/hosted-git-info": {
|
|
1268
|
+
"version": "9.0.3",
|
|
1269
|
+
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-9.0.3.tgz",
|
|
1270
|
+
"integrity": "sha512-Hc+ghLoSt6QaYZUv0WBiIvmMDZuZZ7oaDvdH8MbfOO4lOsxdXLEvuC6ePoGs9H1X9oCLyq6+NVN0MKqD+ydxyg==",
|
|
1271
|
+
"license": "ISC",
|
|
1272
|
+
"dependencies": {
|
|
1273
|
+
"lru-cache": "^11.1.0"
|
|
1274
|
+
},
|
|
1275
|
+
"engines": {
|
|
1276
|
+
"node": "^20.17.0 || >=22.9.0"
|
|
1277
|
+
}
|
|
1278
|
+
},
|
|
1279
|
+
"node_modules/http-proxy-agent": {
|
|
1280
|
+
"version": "7.0.2",
|
|
1281
|
+
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
|
|
1282
|
+
"integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
|
|
1283
|
+
"license": "MIT",
|
|
1284
|
+
"dependencies": {
|
|
1285
|
+
"agent-base": "^7.1.0",
|
|
1286
|
+
"debug": "^4.3.4"
|
|
1287
|
+
},
|
|
1288
|
+
"engines": {
|
|
1289
|
+
"node": ">= 14"
|
|
1290
|
+
}
|
|
1291
|
+
},
|
|
1292
|
+
"node_modules/https-proxy-agent": {
|
|
1293
|
+
"version": "7.0.6",
|
|
1294
|
+
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
|
|
1295
|
+
"integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
|
|
1296
|
+
"license": "MIT",
|
|
1297
|
+
"dependencies": {
|
|
1298
|
+
"agent-base": "^7.1.2",
|
|
1299
|
+
"debug": "4"
|
|
1300
|
+
},
|
|
1301
|
+
"engines": {
|
|
1302
|
+
"node": ">= 14"
|
|
1303
|
+
}
|
|
1304
|
+
},
|
|
1305
|
+
"node_modules/ignore": {
|
|
1306
|
+
"version": "7.0.5",
|
|
1307
|
+
"resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz",
|
|
1308
|
+
"integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==",
|
|
1309
|
+
"license": "MIT",
|
|
1310
|
+
"engines": {
|
|
1311
|
+
"node": ">= 4"
|
|
1312
|
+
}
|
|
1313
|
+
},
|
|
1314
|
+
"node_modules/isexe": {
|
|
1315
|
+
"version": "2.0.0",
|
|
1316
|
+
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
|
|
1317
|
+
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
|
|
1318
|
+
"license": "ISC"
|
|
1319
|
+
},
|
|
1320
|
+
"node_modules/jiti": {
|
|
1321
|
+
"version": "2.7.0",
|
|
1322
|
+
"resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz",
|
|
1323
|
+
"integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==",
|
|
1324
|
+
"license": "MIT",
|
|
1325
|
+
"bin": {
|
|
1326
|
+
"jiti": "lib/jiti-cli.mjs"
|
|
1327
|
+
}
|
|
1328
|
+
},
|
|
1329
|
+
"node_modules/json-bigint": {
|
|
1330
|
+
"version": "1.0.0",
|
|
1331
|
+
"resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz",
|
|
1332
|
+
"integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==",
|
|
1333
|
+
"license": "MIT",
|
|
1334
|
+
"dependencies": {
|
|
1335
|
+
"bignumber.js": "^9.0.0"
|
|
1336
|
+
}
|
|
1337
|
+
},
|
|
1338
|
+
"node_modules/json-schema-to-ts": {
|
|
1339
|
+
"version": "3.1.1",
|
|
1340
|
+
"resolved": "https://registry.npmjs.org/json-schema-to-ts/-/json-schema-to-ts-3.1.1.tgz",
|
|
1341
|
+
"integrity": "sha512-+DWg8jCJG2TEnpy7kOm/7/AxaYoaRbjVB4LFZLySZlWn8exGs3A4OLJR966cVvU26N7X9TWxl+Jsw7dzAqKT6g==",
|
|
1342
|
+
"license": "MIT",
|
|
1343
|
+
"dependencies": {
|
|
1344
|
+
"@babel/runtime": "^7.18.3",
|
|
1345
|
+
"ts-algebra": "^2.0.0"
|
|
1346
|
+
},
|
|
1347
|
+
"engines": {
|
|
1348
|
+
"node": ">=16"
|
|
1349
|
+
}
|
|
1350
|
+
},
|
|
1351
|
+
"node_modules/jwa": {
|
|
1352
|
+
"version": "2.0.1",
|
|
1353
|
+
"resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz",
|
|
1354
|
+
"integrity": "sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==",
|
|
1355
|
+
"license": "MIT",
|
|
1356
|
+
"dependencies": {
|
|
1357
|
+
"buffer-equal-constant-time": "^1.0.1",
|
|
1358
|
+
"ecdsa-sig-formatter": "1.0.11",
|
|
1359
|
+
"safe-buffer": "^5.0.1"
|
|
1360
|
+
}
|
|
1361
|
+
},
|
|
1362
|
+
"node_modules/jws": {
|
|
1363
|
+
"version": "4.0.1",
|
|
1364
|
+
"resolved": "https://registry.npmjs.org/jws/-/jws-4.0.1.tgz",
|
|
1365
|
+
"integrity": "sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==",
|
|
1366
|
+
"license": "MIT",
|
|
1367
|
+
"dependencies": {
|
|
1368
|
+
"jwa": "^2.0.1",
|
|
1369
|
+
"safe-buffer": "^5.0.1"
|
|
1370
|
+
}
|
|
1371
|
+
},
|
|
1372
|
+
"node_modules/koffi": {
|
|
1373
|
+
"version": "2.16.2",
|
|
1374
|
+
"resolved": "https://registry.npmjs.org/koffi/-/koffi-2.16.2.tgz",
|
|
1375
|
+
"integrity": "sha512-owU0MRwv6xkrVqCd+33uw6BaYppkTRXbO/rVdJNI2dvZG0gzyRhYwW25eWtc5pauwK8TGh3AbkFONSezdykfSA==",
|
|
1376
|
+
"license": "MIT",
|
|
1377
|
+
"optional": true,
|
|
1378
|
+
"hasInstallScript": true,
|
|
1379
|
+
"funding": {
|
|
1380
|
+
"url": "https://liberapay.com/Koromix"
|
|
1381
|
+
}
|
|
1382
|
+
},
|
|
1383
|
+
"node_modules/long": {
|
|
1384
|
+
"version": "5.3.2",
|
|
1385
|
+
"resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz",
|
|
1386
|
+
"integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==",
|
|
1387
|
+
"license": "Apache-2.0"
|
|
1388
|
+
},
|
|
1389
|
+
"node_modules/lru-cache": {
|
|
1390
|
+
"version": "11.4.0",
|
|
1391
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.4.0.tgz",
|
|
1392
|
+
"integrity": "sha512-W+R+kFL4HgVxONq2bhXPi3bGpzGe/yEhVOp233qw9wCRtgncJ15P3bC+e4zZMu4Cq7d+WAJjXGW0uUkifhcatA==",
|
|
1393
|
+
"license": "BlueOak-1.0.0",
|
|
1394
|
+
"engines": {
|
|
1395
|
+
"node": "20 || >=22"
|
|
1396
|
+
}
|
|
1397
|
+
},
|
|
1398
|
+
"node_modules/marked": {
|
|
1399
|
+
"version": "15.0.12",
|
|
1400
|
+
"resolved": "https://registry.npmjs.org/marked/-/marked-15.0.12.tgz",
|
|
1401
|
+
"integrity": "sha512-8dD6FusOQSrpv9Z1rdNMdlSgQOIP880DHqnohobOmYLElGEqAL/JvxvuxZO16r4HtjTlfPRDC1hbvxC9dPN2nA==",
|
|
1402
|
+
"license": "MIT",
|
|
1403
|
+
"bin": {
|
|
1404
|
+
"marked": "bin/marked.js"
|
|
1405
|
+
},
|
|
1406
|
+
"engines": {
|
|
1407
|
+
"node": ">= 18"
|
|
1408
|
+
}
|
|
1409
|
+
},
|
|
1410
|
+
"node_modules/minimatch": {
|
|
1411
|
+
"version": "10.2.5",
|
|
1412
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
|
|
1413
|
+
"integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
|
|
1414
|
+
"license": "BlueOak-1.0.0",
|
|
1415
|
+
"dependencies": {
|
|
1416
|
+
"brace-expansion": "^5.0.5"
|
|
1417
|
+
},
|
|
1418
|
+
"engines": {
|
|
1419
|
+
"node": "18 || 20 || >=22"
|
|
1420
|
+
},
|
|
1421
|
+
"funding": {
|
|
1422
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
1423
|
+
}
|
|
1424
|
+
},
|
|
1425
|
+
"node_modules/minipass": {
|
|
1426
|
+
"version": "7.1.3",
|
|
1427
|
+
"resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz",
|
|
1428
|
+
"integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==",
|
|
1429
|
+
"license": "BlueOak-1.0.0",
|
|
1430
|
+
"engines": {
|
|
1431
|
+
"node": ">=16 || 14 >=14.17"
|
|
1432
|
+
}
|
|
1433
|
+
},
|
|
1434
|
+
"node_modules/ms": {
|
|
1435
|
+
"version": "2.1.3",
|
|
1436
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
1437
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
1438
|
+
"license": "MIT"
|
|
1439
|
+
},
|
|
1440
|
+
"node_modules/node-domexception": {
|
|
1441
|
+
"version": "1.0.0",
|
|
1442
|
+
"resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz",
|
|
1443
|
+
"integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==",
|
|
1444
|
+
"license": "MIT",
|
|
1445
|
+
"engines": {
|
|
1446
|
+
"node": ">=10.5.0"
|
|
1447
|
+
},
|
|
1448
|
+
"deprecated": "Use your platform's native DOMException instead",
|
|
1449
|
+
"funding": [
|
|
1450
|
+
{
|
|
1451
|
+
"type": "github",
|
|
1452
|
+
"url": "https://github.com/sponsors/jimmywarting"
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
"type": "github",
|
|
1456
|
+
"url": "https://paypal.me/jimmywarting"
|
|
1457
|
+
}
|
|
1458
|
+
]
|
|
1459
|
+
},
|
|
1460
|
+
"node_modules/node-fetch": {
|
|
1461
|
+
"version": "3.3.2",
|
|
1462
|
+
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz",
|
|
1463
|
+
"integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==",
|
|
1464
|
+
"license": "MIT",
|
|
1465
|
+
"dependencies": {
|
|
1466
|
+
"data-uri-to-buffer": "^4.0.0",
|
|
1467
|
+
"fetch-blob": "^3.1.4",
|
|
1468
|
+
"formdata-polyfill": "^4.0.10"
|
|
1469
|
+
},
|
|
1470
|
+
"engines": {
|
|
1471
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
1472
|
+
},
|
|
1473
|
+
"funding": {
|
|
1474
|
+
"type": "opencollective",
|
|
1475
|
+
"url": "https://opencollective.com/node-fetch"
|
|
1476
|
+
}
|
|
1477
|
+
},
|
|
1478
|
+
"node_modules/openai": {
|
|
1479
|
+
"version": "6.26.0",
|
|
1480
|
+
"resolved": "https://registry.npmjs.org/openai/-/openai-6.26.0.tgz",
|
|
1481
|
+
"integrity": "sha512-zd23dbWTjiJ6sSAX6s0HrCZi41JwTA1bQVs0wLQPZ2/5o2gxOJA5wh7yOAUgwYybfhDXyhwlpeQf7Mlgx8EOCA==",
|
|
1482
|
+
"license": "Apache-2.0",
|
|
1483
|
+
"peerDependencies": {
|
|
1484
|
+
"ws": "^8.18.0",
|
|
1485
|
+
"zod": "^3.25 || ^4.0"
|
|
1486
|
+
},
|
|
1487
|
+
"peerDependenciesMeta": {
|
|
1488
|
+
"ws": {
|
|
1489
|
+
"optional": true
|
|
1490
|
+
},
|
|
1491
|
+
"zod": {
|
|
1492
|
+
"optional": true
|
|
1493
|
+
}
|
|
1494
|
+
},
|
|
1495
|
+
"bin": {
|
|
1496
|
+
"openai": "bin/cli"
|
|
1497
|
+
}
|
|
1498
|
+
},
|
|
1499
|
+
"node_modules/p-retry": {
|
|
1500
|
+
"version": "4.6.2",
|
|
1501
|
+
"resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz",
|
|
1502
|
+
"integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==",
|
|
1503
|
+
"license": "MIT",
|
|
1504
|
+
"dependencies": {
|
|
1505
|
+
"@types/retry": "0.12.0",
|
|
1506
|
+
"retry": "^0.13.1"
|
|
1507
|
+
},
|
|
1508
|
+
"engines": {
|
|
1509
|
+
"node": ">=8"
|
|
1510
|
+
}
|
|
1511
|
+
},
|
|
1512
|
+
"node_modules/p-retry/node_modules/@types/retry": {
|
|
1513
|
+
"version": "0.12.0",
|
|
1514
|
+
"resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz",
|
|
1515
|
+
"integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==",
|
|
1516
|
+
"license": "MIT"
|
|
1517
|
+
},
|
|
1518
|
+
"node_modules/partial-json": {
|
|
1519
|
+
"version": "0.1.7",
|
|
1520
|
+
"resolved": "https://registry.npmjs.org/partial-json/-/partial-json-0.1.7.tgz",
|
|
1521
|
+
"integrity": "sha512-Njv/59hHaokb/hRUjce3Hdv12wd60MtM9Z5Olmn+nehe0QDAsRtRbJPvJ0Z91TusF0SuZRIvnM+S4l6EIP8leA==",
|
|
1522
|
+
"license": "MIT"
|
|
1523
|
+
},
|
|
1524
|
+
"node_modules/path-expression-matcher": {
|
|
1525
|
+
"version": "1.5.0",
|
|
1526
|
+
"resolved": "https://registry.npmjs.org/path-expression-matcher/-/path-expression-matcher-1.5.0.tgz",
|
|
1527
|
+
"integrity": "sha512-cbrerZV+6rvdQrrD+iGMcZFEiiSrbv9Tfdkvnusy6y0x0GKBXREFg/Y65GhIfm0tnLntThhzCnfKwp1WRjeCyQ==",
|
|
1528
|
+
"license": "MIT",
|
|
1529
|
+
"engines": {
|
|
1530
|
+
"node": ">=14.0.0"
|
|
1531
|
+
},
|
|
1532
|
+
"funding": [
|
|
1533
|
+
{
|
|
1534
|
+
"type": "github",
|
|
1535
|
+
"url": "https://github.com/sponsors/NaturalIntelligence"
|
|
1536
|
+
}
|
|
1537
|
+
]
|
|
1538
|
+
},
|
|
1539
|
+
"node_modules/path-key": {
|
|
1540
|
+
"version": "3.1.1",
|
|
1541
|
+
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
|
|
1542
|
+
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
|
|
1543
|
+
"license": "MIT",
|
|
1544
|
+
"engines": {
|
|
1545
|
+
"node": ">=8"
|
|
1546
|
+
}
|
|
1547
|
+
},
|
|
1548
|
+
"node_modules/path-scurry": {
|
|
1549
|
+
"version": "2.0.2",
|
|
1550
|
+
"resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.2.tgz",
|
|
1551
|
+
"integrity": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==",
|
|
1552
|
+
"license": "BlueOak-1.0.0",
|
|
1553
|
+
"dependencies": {
|
|
1554
|
+
"lru-cache": "^11.0.0",
|
|
1555
|
+
"minipass": "^7.1.2"
|
|
1556
|
+
},
|
|
1557
|
+
"engines": {
|
|
1558
|
+
"node": "18 || 20 || >=22"
|
|
1559
|
+
},
|
|
1560
|
+
"funding": {
|
|
1561
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
1562
|
+
}
|
|
1563
|
+
},
|
|
1564
|
+
"node_modules/proper-lockfile": {
|
|
1565
|
+
"version": "4.1.2",
|
|
1566
|
+
"resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz",
|
|
1567
|
+
"integrity": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==",
|
|
1568
|
+
"license": "MIT",
|
|
1569
|
+
"dependencies": {
|
|
1570
|
+
"graceful-fs": "^4.2.4",
|
|
1571
|
+
"retry": "^0.12.0",
|
|
1572
|
+
"signal-exit": "^3.0.2"
|
|
1573
|
+
}
|
|
1574
|
+
},
|
|
1575
|
+
"node_modules/proper-lockfile/node_modules/retry": {
|
|
1576
|
+
"version": "0.12.0",
|
|
1577
|
+
"resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
|
|
1578
|
+
"integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
|
|
1579
|
+
"license": "MIT",
|
|
1580
|
+
"engines": {
|
|
1581
|
+
"node": ">= 4"
|
|
1582
|
+
}
|
|
1583
|
+
},
|
|
1584
|
+
"node_modules/protobufjs": {
|
|
1585
|
+
"version": "7.5.9",
|
|
1586
|
+
"resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.9.tgz",
|
|
1587
|
+
"integrity": "sha512-Od4muIm3HW1AouyHF5lONOf1FWo3hY1NbFDoy191X9GzhpgW1clCoaFjfVs2rKJNFYpTNJbje4cbAIDBZJ63ZA==",
|
|
1588
|
+
"license": "BSD-3-Clause",
|
|
1589
|
+
"dependencies": {
|
|
1590
|
+
"@protobufjs/aspromise": "^1.1.2",
|
|
1591
|
+
"@protobufjs/base64": "^1.1.2",
|
|
1592
|
+
"@protobufjs/codegen": "^2.0.5",
|
|
1593
|
+
"@protobufjs/eventemitter": "^1.1.0",
|
|
1594
|
+
"@protobufjs/fetch": "^1.1.1",
|
|
1595
|
+
"@protobufjs/float": "^1.0.2",
|
|
1596
|
+
"@protobufjs/inquire": "^1.1.2",
|
|
1597
|
+
"@protobufjs/path": "^1.1.2",
|
|
1598
|
+
"@protobufjs/pool": "^1.1.0",
|
|
1599
|
+
"@protobufjs/utf8": "^1.1.1",
|
|
1600
|
+
"@types/node": ">=13.7.0",
|
|
1601
|
+
"long": "^5.0.0"
|
|
1602
|
+
},
|
|
1603
|
+
"engines": {
|
|
1604
|
+
"node": ">=12.0.0"
|
|
1605
|
+
},
|
|
1606
|
+
"hasInstallScript": true
|
|
1607
|
+
},
|
|
1608
|
+
"node_modules/retry": {
|
|
1609
|
+
"version": "0.13.1",
|
|
1610
|
+
"resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz",
|
|
1611
|
+
"integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==",
|
|
1612
|
+
"license": "MIT",
|
|
1613
|
+
"engines": {
|
|
1614
|
+
"node": ">= 4"
|
|
1615
|
+
}
|
|
1616
|
+
},
|
|
1617
|
+
"node_modules/safe-buffer": {
|
|
1618
|
+
"version": "5.2.1",
|
|
1619
|
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
|
1620
|
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
|
1621
|
+
"license": "MIT",
|
|
1622
|
+
"funding": [
|
|
1623
|
+
{
|
|
1624
|
+
"type": "github",
|
|
1625
|
+
"url": "https://github.com/sponsors/feross"
|
|
1626
|
+
},
|
|
1627
|
+
{
|
|
1628
|
+
"type": "patreon",
|
|
1629
|
+
"url": "https://www.patreon.com/feross"
|
|
1630
|
+
},
|
|
1631
|
+
{
|
|
1632
|
+
"type": "consulting",
|
|
1633
|
+
"url": "https://feross.org/support"
|
|
1634
|
+
}
|
|
1635
|
+
]
|
|
1636
|
+
},
|
|
1637
|
+
"node_modules/shebang-command": {
|
|
1638
|
+
"version": "2.0.0",
|
|
1639
|
+
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
|
1640
|
+
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
|
1641
|
+
"license": "MIT",
|
|
1642
|
+
"dependencies": {
|
|
1643
|
+
"shebang-regex": "^3.0.0"
|
|
1644
|
+
},
|
|
1645
|
+
"engines": {
|
|
1646
|
+
"node": ">=8"
|
|
1647
|
+
}
|
|
1648
|
+
},
|
|
1649
|
+
"node_modules/shebang-regex": {
|
|
1650
|
+
"version": "3.0.0",
|
|
1651
|
+
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
|
|
1652
|
+
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
|
|
1653
|
+
"license": "MIT",
|
|
1654
|
+
"engines": {
|
|
1655
|
+
"node": ">=8"
|
|
1656
|
+
}
|
|
1657
|
+
},
|
|
1658
|
+
"node_modules/signal-exit": {
|
|
1659
|
+
"version": "3.0.7",
|
|
1660
|
+
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
|
|
1661
|
+
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
|
|
1662
|
+
"license": "ISC"
|
|
1663
|
+
},
|
|
1664
|
+
"node_modules/strnum": {
|
|
1665
|
+
"version": "2.3.0",
|
|
1666
|
+
"resolved": "https://registry.npmjs.org/strnum/-/strnum-2.3.0.tgz",
|
|
1667
|
+
"integrity": "sha512-ums3KNd42PGyx5xaoVTO1mjU1bH3NpY4vsrVlnv9PNGqQj8wd7rJ6nEypLrJ7z5vxK5RP0yMLo6J/Gsm62DI5Q==",
|
|
1668
|
+
"license": "MIT",
|
|
1669
|
+
"funding": [
|
|
1670
|
+
{
|
|
1671
|
+
"type": "github",
|
|
1672
|
+
"url": "https://github.com/sponsors/NaturalIntelligence"
|
|
1673
|
+
}
|
|
1674
|
+
]
|
|
1675
|
+
},
|
|
1676
|
+
"node_modules/ts-algebra": {
|
|
1677
|
+
"version": "2.0.0",
|
|
1678
|
+
"resolved": "https://registry.npmjs.org/ts-algebra/-/ts-algebra-2.0.0.tgz",
|
|
1679
|
+
"integrity": "sha512-FPAhNPFMrkwz76P7cdjdmiShwMynZYN6SgOujD1urY4oNm80Ou9oMdmbR45LotcKOXoy7wSmHkRFE6Mxbrhefw==",
|
|
1680
|
+
"license": "MIT"
|
|
1681
|
+
},
|
|
1682
|
+
"node_modules/tslib": {
|
|
1683
|
+
"version": "2.8.1",
|
|
1684
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
1685
|
+
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
1686
|
+
"license": "0BSD"
|
|
1687
|
+
},
|
|
1688
|
+
"node_modules/typebox": {
|
|
1689
|
+
"version": "1.1.38",
|
|
1690
|
+
"resolved": "https://registry.npmjs.org/typebox/-/typebox-1.1.38.tgz",
|
|
1691
|
+
"integrity": "sha512-pZ0aQPmMmXoUvSbeuWf/Hzsc+avNw/Zd6VeE8CFgkVGWyuHPJvqeJJDeJqLve+K70LvjYIoleGcoJHPT17cWoA==",
|
|
1692
|
+
"license": "MIT"
|
|
1693
|
+
},
|
|
1694
|
+
"node_modules/undici": {
|
|
1695
|
+
"version": "8.3.0",
|
|
1696
|
+
"resolved": "https://registry.npmjs.org/undici/-/undici-8.3.0.tgz",
|
|
1697
|
+
"integrity": "sha512-TkUDgb6tl7KOGZ+7e8E3d2FYgUQgF6z5YypqjWmixVQSQERFcVrVg0ySADm2LVLRh5ljAaHTCR5Fmz3Q34rB7Q==",
|
|
1698
|
+
"license": "MIT",
|
|
1699
|
+
"engines": {
|
|
1700
|
+
"node": ">=22.19.0"
|
|
1701
|
+
}
|
|
1702
|
+
},
|
|
1703
|
+
"node_modules/undici-types": {
|
|
1704
|
+
"version": "6.21.0",
|
|
1705
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
1706
|
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
1707
|
+
"license": "MIT"
|
|
1708
|
+
},
|
|
1709
|
+
"node_modules/web-streams-polyfill": {
|
|
1710
|
+
"version": "3.3.3",
|
|
1711
|
+
"resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz",
|
|
1712
|
+
"integrity": "sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==",
|
|
1713
|
+
"license": "MIT",
|
|
1714
|
+
"engines": {
|
|
1715
|
+
"node": ">= 8"
|
|
1716
|
+
}
|
|
1717
|
+
},
|
|
1718
|
+
"node_modules/which": {
|
|
1719
|
+
"version": "2.0.2",
|
|
1720
|
+
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
|
1721
|
+
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
|
1722
|
+
"license": "ISC",
|
|
1723
|
+
"dependencies": {
|
|
1724
|
+
"isexe": "^2.0.0"
|
|
1725
|
+
},
|
|
1726
|
+
"bin": {
|
|
1727
|
+
"node-which": "bin/node-which"
|
|
1728
|
+
},
|
|
1729
|
+
"engines": {
|
|
1730
|
+
"node": ">= 8"
|
|
1731
|
+
}
|
|
1732
|
+
},
|
|
1733
|
+
"node_modules/ws": {
|
|
1734
|
+
"version": "8.20.1",
|
|
1735
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.20.1.tgz",
|
|
1736
|
+
"integrity": "sha512-It4dO0K5v//JtTXuPkfEOaI3uUN87iYPnqo/ZzqCoG3g8uhA66QUMs/SrM0YK7/NAu+r4LMh/9dq2A7k+rHs+w==",
|
|
1737
|
+
"license": "MIT",
|
|
1738
|
+
"peerDependencies": {
|
|
1739
|
+
"bufferutil": "^4.0.1",
|
|
1740
|
+
"utf-8-validate": ">=5.0.2"
|
|
1741
|
+
},
|
|
1742
|
+
"peerDependenciesMeta": {
|
|
1743
|
+
"bufferutil": {
|
|
1744
|
+
"optional": true
|
|
1745
|
+
},
|
|
1746
|
+
"utf-8-validate": {
|
|
1747
|
+
"optional": true
|
|
1748
|
+
}
|
|
1749
|
+
},
|
|
1750
|
+
"engines": {
|
|
1751
|
+
"node": ">=10.0.0"
|
|
1752
|
+
}
|
|
1753
|
+
},
|
|
1754
|
+
"node_modules/xml-naming": {
|
|
1755
|
+
"version": "0.1.0",
|
|
1756
|
+
"resolved": "https://registry.npmjs.org/xml-naming/-/xml-naming-0.1.0.tgz",
|
|
1757
|
+
"integrity": "sha512-k8KO9hrMyNk6tUWqUfkTEZbezRRpONVOzUTnc97VnCvyj6Tf9lyUR9EDAIeiVLv56jsMcoXEwjW8Kv5yPY52lw==",
|
|
1758
|
+
"license": "MIT",
|
|
1759
|
+
"engines": {
|
|
1760
|
+
"node": ">=16.0.0"
|
|
1761
|
+
},
|
|
1762
|
+
"funding": [
|
|
1763
|
+
{
|
|
1764
|
+
"type": "github",
|
|
1765
|
+
"url": "https://github.com/sponsors/NaturalIntelligence"
|
|
1766
|
+
}
|
|
1767
|
+
]
|
|
1768
|
+
},
|
|
1769
|
+
"node_modules/yaml": {
|
|
1770
|
+
"version": "2.9.0",
|
|
1771
|
+
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.9.0.tgz",
|
|
1772
|
+
"integrity": "sha512-2AvhNX3mb8zd6Zy7INTtSpl1F15HW6Wnqj0srWlkKLcpYl/gMIMJiyuGq2KeI2YFxUPjdlB+3Lc10seMLtL4cA==",
|
|
1773
|
+
"license": "ISC",
|
|
1774
|
+
"bin": {
|
|
1775
|
+
"yaml": "bin.mjs"
|
|
1776
|
+
},
|
|
1777
|
+
"engines": {
|
|
1778
|
+
"node": ">= 14.6"
|
|
1779
|
+
},
|
|
1780
|
+
"funding": {
|
|
1781
|
+
"url": "https://github.com/sponsors/eemeli"
|
|
1782
|
+
}
|
|
1783
|
+
},
|
|
1784
|
+
"node_modules/zod": {
|
|
1785
|
+
"version": "3.25.76",
|
|
1786
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
1787
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
1788
|
+
"license": "MIT",
|
|
1789
|
+
"funding": {
|
|
1790
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
1791
|
+
}
|
|
1792
|
+
},
|
|
1793
|
+
"node_modules/zod-to-json-schema": {
|
|
1794
|
+
"version": "3.25.2",
|
|
1795
|
+
"resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.2.tgz",
|
|
1796
|
+
"integrity": "sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==",
|
|
1797
|
+
"license": "ISC",
|
|
1798
|
+
"peerDependencies": {
|
|
1799
|
+
"zod": "^3.25.28 || ^4"
|
|
1800
|
+
}
|
|
1801
|
+
}
|
|
1802
|
+
}
|
|
1803
|
+
}
|