mirror of
https://github.com/KeygraphHQ/shannon.git
synced 2026-04-01 02:10:55 +02:00
* feat: integrate npx CLI, CI/CD, and ephemeral worker architecture
Bring in changes from shannon-npx: npx-distributable CLI package (cli/),
semantic-release CI/CD workflows, ephemeral per-scan worker containers,
TOML config support, setup wizard, and workspace management.
Preserves all shannon-only changes: security hardening (localhost-bound
ports, MCP env allowlist, path traversal guard), updated benchmarks
(XBEN 19/31/35/44), README assets, and prompt injection disclaimer.
Applies security hardening to cli/infra/compose.yml as well.
* refactor: migrate to Turborepo + pnpm + Biome monorepo
Restructure into apps/worker, apps/cli, packages/mcp-server with
Turborepo task orchestration, pnpm workspaces, Biome linting/formatting,
and tsdown CLI bundling.
Key changes:
- src/ -> apps/worker/src/, cli/ -> apps/cli/, mcp-server/ -> packages/mcp-server/
- prompts/ and configs/ moved into apps/worker/
- npm replaced with pnpm, package-lock.json replaced with pnpm-lock.yaml
- Dockerfile updated for pnpm-based builds
- CLI logs command rewritten with chokidar for cross-platform reliability
- Router health checking added for auto-detected router mode
- Centralized path resolution via apps/worker/src/paths.ts
* fix: resolve all biome warnings and formatting issues
- Remove unnecessary non-null assertions where values are guaranteed
- Replace array index access with .at() for safer element retrieval
- Use local variables to avoid repeated process.env lookups
- Replace any types with unknown in functional utilities
- Use nullish coalescing for TOTP hash byte access
- Auto-format security patches to match biome config
* fix: pin pnpm to 10.12.1 in Dockerfile for catalog support
* fix: handle Esc cancellation in Bedrock setup flow
Replace p.group() with individual prompts and per-field cancel checks,
matching the pattern used by all other provider setup flows.
* feat: add optional model customization to Anthropic setup
* fix: resolve Docker bind mount permission errors on Linux
Use entrypoint-based UID remapping instead of --user flag so the
container's pentest user matches the host UID/GID, keeping bind-mounted
volumes writable. Git config moved to --system level to survive remapping.
* fix: show resumed workflow ID in splash screen URL
When resuming a workflow, the Temporal Web UI link pointed to the old
(terminated) workflow ID. Now extracts "New Workflow ID" from the resume
header in workflow.log, falling back to the original ID for fresh scans.
* style: fix biome formatting in docker.ts
* fix: align TypeScript config types with JSON Schema
- SuccessCondition.type: use schema values (url_contains,
element_present, url_equals_exactly, text_contains) instead of
stale values (url, cookie, element, redirect)
- Authentication.login_flow: mark optional to match schema which
does not require it
* feat: mark GitHub release as latest during rollback
* fix: use native ARM64 runners for Docker multi-platform builds
Replace QEMU emulation with parallel native builds using a matrix
strategy (ubuntu-latest for amd64, ubuntu-24.04-arm for arm64).
Each platform pushes by digest, then a merge job creates the
multi-arch manifest list before signing with cosign.
* fix: resolve SessionMutex race condition with 3+ concurrent waiters
* fix: skip POSIX permission check on Windows
writeFileSync mode option is ignored on Windows, so config.toml
gets 0o666 and the guard rejects it.
* fix: resolve unsubstituted placeholders in report prompt
Remove unused {{GITHUB_URL}} placeholder and wire up {{AUTH_CONTEXT}}
with structured auth context (login type, username, URL, MFA status).
* fix: remove duplicate environment gate from merge-docker job
Move DOCKERHUB_USERNAME from vars to secrets so merge-docker can access
credentials without its own environment scope. This eliminates the
redundant double approval since build-docker already gates on
release-publish.
* fix: replace POSIX sleep binary with cross-platform async sleep
execFileSync('sleep') is unavailable on Windows. Use node:timers/promises
setTimeout instead, making ensureInfra async.
* fix: use session.json for workflow ID on resume instead of parsing workflow.log
On resume, workflow.log already exists with stale headers from the
previous run. The CLI poll found '====' immediately and extracted the
old workflow ID, producing a wrong Temporal Web UI URL.
Read the workflow ID from session.json instead — the worker writes
resume attempts there atomically. For fresh runs, poll until
originalWorkflowId appears. For resumes, poll until a new
resumeAttempts entry is appended.
* feat: add custom base URL support for Anthropic-compatible proxies
Support ANTHROPIC_BASE_URL + ANTHROPIC_AUTH_TOKEN to route SDK requests
through LiteLLM or any Anthropic-compatible proxy. Adds TUI wizard
option, TOML config mapping, credential validation, and preflight
endpoint reachability check via SDK query.
* fix: remove environment gates and add NPM_TOKEN to publish step
* feat: add beta release and rollback workflows with cosign signing
* fix: remove redundant checkout and pnpm steps from beta release workflow
* docs: normalize README commands to mode-neutral shorthand
Add a substitution note after Quick Start sections so all subsequent
examples use bare `shannon` instead of mixing `./shannon` and
`npx @keygraph/shannon`. Mode-specific commands (build, update,
uninstall) get inline annotations. Also fixes a broken command in the
Custom Base URL section.
* fix: remove redundant `update` command
Image is already auto-pulled by `ensureImage()` during `start` when the
pinned version tag is missing locally. Manual `update` was unnecessary.
* docs: add CLI package README stub
* docs: update README setup instructions for dual CLI modes
* docs: update announcement banner to npx availability
* feat: migrate from MCP tools to CLI based tools (#252)
* feat: migrate from MCP tools to CLI tools
* fix: restore browser action emoji formatters for CLI output
Adapt formatBrowserAction for playwright-cli commands, replacing the old
mcp__playwright__browser_* tool name matching removed during migration.
* fix: mount credential file to fixed container path for Vertex AI
GOOGLE_APPLICATION_CREDENTIALS was forwarded as-is to the container,
causing the relative host path to resolve against the repo mount
instead of the credentials mount. Now both local and npx modes mount
the resolved file to /app/credentials/google-sa-key.json and rewrite
the env var to match.
* feat: add git awareness and optional description field to config
* fix: drop redundant --ipc host flag from worker container
* fix: align announcement banner URL with main branch
* feat: add target URL reachability preflight check (#254)
* Moving asset benchmark graph image to this folder
* Move benchmark results to benchmark repo
Windows Defender flags exploit code in the pentest reports as false positives, forcing every Windows user to add a Defender exclusion just to clone Shannon.
* Updated README
* fix: case-insensitive grep for semantic-release version probe
* fix: harden supply chain security (#255)
* fix: patch smol-toml and tsdown vulnerabilities
Update smol-toml 1.6.0→1.6.1 (DoS via recursive comment parsing) and
tsdown 0.21.2→0.21.5 (picomatch ReDoS + method injection).
* fix: pin all unpinned dependency versions in Dockerfile
Pins subfinder v2.13.0, WhatWeb v0.6.3 (switched from git clone to
release tarball), schemathesis 4.13.0, addressable 2.8.9,
claude-code 2.1.84, and playwright-cli 0.1.1 for reproducible builds.
* fix: pin GitHub Actions to commit SHAs for supply chain security
* fix: pin GitHub Actions to commit SHAs in beta and rollback workflows
2504 lines
80 KiB
YAML
2504 lines
80 KiB
YAML
lockfileVersion: '9.0'
|
|
|
|
settings:
|
|
autoInstallPeers: true
|
|
excludeLinksFromLockfile: false
|
|
|
|
catalogs:
|
|
default:
|
|
'@anthropic-ai/claude-agent-sdk':
|
|
specifier: ^0.2.38
|
|
version: 0.2.76
|
|
|
|
importers:
|
|
|
|
.:
|
|
devDependencies:
|
|
'@biomejs/biome':
|
|
specifier: ^2.0.0
|
|
version: 2.4.7
|
|
'@types/node':
|
|
specifier: ^25.0.3
|
|
version: 25.5.0
|
|
turbo:
|
|
specifier: ^2.5.0
|
|
version: 2.8.17
|
|
typescript:
|
|
specifier: ^5.9.3
|
|
version: 5.9.3
|
|
|
|
apps/cli:
|
|
dependencies:
|
|
'@clack/prompts':
|
|
specifier: ^1.1.0
|
|
version: 1.1.0
|
|
chokidar:
|
|
specifier: ^5.0.0
|
|
version: 5.0.0
|
|
dotenv:
|
|
specifier: ^17.3.1
|
|
version: 17.3.1
|
|
smol-toml:
|
|
specifier: ^1.6.1
|
|
version: 1.6.1
|
|
devDependencies:
|
|
tsdown:
|
|
specifier: ^0.21.5
|
|
version: 0.21.5(typescript@5.9.3)
|
|
|
|
apps/worker:
|
|
dependencies:
|
|
'@anthropic-ai/claude-agent-sdk':
|
|
specifier: 'catalog:'
|
|
version: 0.2.76(zod@4.3.6)
|
|
'@temporalio/activity':
|
|
specifier: ^1.11.0
|
|
version: 1.15.0
|
|
'@temporalio/client':
|
|
specifier: ^1.11.0
|
|
version: 1.15.0
|
|
'@temporalio/worker':
|
|
specifier: ^1.11.0
|
|
version: 1.15.0(tslib@2.8.1)
|
|
'@temporalio/workflow':
|
|
specifier: ^1.11.0
|
|
version: 1.15.0
|
|
ajv:
|
|
specifier: ^8.12.0
|
|
version: 8.18.0
|
|
ajv-formats:
|
|
specifier: ^2.1.1
|
|
version: 2.1.1(ajv@8.18.0)
|
|
dotenv:
|
|
specifier: ^16.4.5
|
|
version: 16.6.1
|
|
js-yaml:
|
|
specifier: ^4.1.0
|
|
version: 4.1.1
|
|
zx:
|
|
specifier: ^8.0.0
|
|
version: 8.8.5
|
|
devDependencies:
|
|
'@types/js-yaml':
|
|
specifier: ^4.0.9
|
|
version: 4.0.9
|
|
|
|
packages:
|
|
|
|
'@anthropic-ai/claude-agent-sdk@0.2.76':
|
|
resolution: {integrity: sha512-HZxvnT8ZWkzCnQygaYCA0dl8RSUzuVbxE1YG4ecy6vh4nQbTT36CxUxBy+QVdR12pPQluncC0mCOLhI2918Eaw==}
|
|
engines: {node: '>=18.0.0'}
|
|
peerDependencies:
|
|
zod: ^4.0.0
|
|
|
|
'@babel/generator@8.0.0-rc.2':
|
|
resolution: {integrity: sha512-oCQ1IKPwkzCeJzAPb7Fv8rQ9k5+1sG8mf2uoHiMInPYvkRfrDJxbTIbH51U+jstlkghus0vAi3EBvkfvEsYNLQ==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
|
|
'@babel/helper-string-parser@8.0.0-rc.2':
|
|
resolution: {integrity: sha512-noLx87RwlBEMrTzncWd/FvTxoJ9+ycHNg0n8yyYydIoDsLZuxknKgWRJUqcrVkNrJ74uGyhWQzQaS3q8xfGAhQ==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
|
|
'@babel/helper-validator-identifier@8.0.0-rc.2':
|
|
resolution: {integrity: sha512-xExUBkuXWJjVuIbO7z6q7/BA9bgfJDEhVL0ggrggLMbg0IzCUWGT1hZGE8qUH7Il7/RD/a6cZ3AAFrrlp1LF/A==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
|
|
'@babel/parser@8.0.0-rc.2':
|
|
resolution: {integrity: sha512-29AhEtcq4x8Dp3T72qvUMZHx0OMXCj4Jy/TEReQa+KWLln524Cj1fWb3QFi0l/xSpptQBR6y9RNEXuxpFvwiUQ==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
hasBin: true
|
|
|
|
'@babel/types@8.0.0-rc.2':
|
|
resolution: {integrity: sha512-91gAaWRznDwSX4E2tZ1YjBuIfnQVOFDCQ2r0Toby0gu4XEbyF623kXLMA8d4ZbCu+fINcrudkmEcwSUHgDDkNw==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
|
|
'@biomejs/biome@2.4.7':
|
|
resolution: {integrity: sha512-vXrgcmNGZ4lpdwZSpMf1hWw1aWS6B+SyeSYKTLrNsiUsAdSRN0J4d/7mF3ogJFbIwFFSOL3wT92Zzxia/d5/ng==}
|
|
engines: {node: '>=14.21.3'}
|
|
hasBin: true
|
|
|
|
'@biomejs/cli-darwin-arm64@2.4.7':
|
|
resolution: {integrity: sha512-Oo0cF5mHzmvDmTXw8XSjhCia8K6YrZnk7aCS54+/HxyMdZMruMO3nfpDsrlar/EQWe41r1qrwKiCa2QDYHDzWA==}
|
|
engines: {node: '>=14.21.3'}
|
|
cpu: [arm64]
|
|
os: [darwin]
|
|
|
|
'@biomejs/cli-darwin-x64@2.4.7':
|
|
resolution: {integrity: sha512-I+cOG3sd/7HdFtvDSnF9QQPrWguUH7zrkIMMykM3PtfWU9soTcS2yRb9Myq6MHmzbeCT08D1UmY+BaiMl5CcoQ==}
|
|
engines: {node: '>=14.21.3'}
|
|
cpu: [x64]
|
|
os: [darwin]
|
|
|
|
'@biomejs/cli-linux-arm64-musl@2.4.7':
|
|
resolution: {integrity: sha512-I2NvM9KPb09jWml93O2/5WMfNR7Lee5Latag1JThDRMURVhPX74p9UDnyTw3Ae6cE1DgXfw7sqQgX7rkvpc0vw==}
|
|
engines: {node: '>=14.21.3'}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
|
|
'@biomejs/cli-linux-arm64@2.4.7':
|
|
resolution: {integrity: sha512-om6FugwmibzfP/6ALj5WRDVSND4H2G9X0nkI1HZpp2ySf9lW2j0X68oQSaHEnls6666oy4KDsc5RFjT4m0kV0w==}
|
|
engines: {node: '>=14.21.3'}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
|
|
'@biomejs/cli-linux-x64-musl@2.4.7':
|
|
resolution: {integrity: sha512-00kx4YrBMU8374zd2wHuRV5wseh0rom5HqRND+vDldJPrWwQw+mzd/d8byI9hPx926CG+vWzq6AeiT7Yi5y59g==}
|
|
engines: {node: '>=14.21.3'}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
|
|
'@biomejs/cli-linux-x64@2.4.7':
|
|
resolution: {integrity: sha512-bV8/uo2Tj+gumnk4sUdkerWyCPRabaZdv88IpbmDWARQQoA/Q0YaqPz1a+LSEDIL7OfrnPi9Hq1Llz4ZIGyIQQ==}
|
|
engines: {node: '>=14.21.3'}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
|
|
'@biomejs/cli-win32-arm64@2.4.7':
|
|
resolution: {integrity: sha512-hOUHBMlFCvDhu3WCq6vaBoG0dp0LkWxSEnEEsxxXvOa9TfT6ZBnbh72A/xBM7CBYB7WgwqboetzFEVDnMxelyw==}
|
|
engines: {node: '>=14.21.3'}
|
|
cpu: [arm64]
|
|
os: [win32]
|
|
|
|
'@biomejs/cli-win32-x64@2.4.7':
|
|
resolution: {integrity: sha512-qEpGjSkPC3qX4ycbMUthXvi9CkRq7kZpkqMY1OyhmYlYLnANnooDQ7hDerM8+0NJ+DZKVnsIc07h30XOpt7LtQ==}
|
|
engines: {node: '>=14.21.3'}
|
|
cpu: [x64]
|
|
os: [win32]
|
|
|
|
'@clack/core@1.1.0':
|
|
resolution: {integrity: sha512-SVcm4Dqm2ukn64/8Gub2wnlA5nS2iWJyCkdNHcvNHPIeBTGojpdJ+9cZKwLfmqy7irD4N5qLteSilJlE0WLAtA==}
|
|
|
|
'@clack/prompts@1.1.0':
|
|
resolution: {integrity: sha512-pkqbPGtohJAvm4Dphs2M8xE29ggupihHdy1x84HNojZuMtFsHiUlRvqD24tM2+XmI+61LlfNceM3Wr7U5QES5g==}
|
|
|
|
'@emnapi/core@1.9.1':
|
|
resolution: {integrity: sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==}
|
|
|
|
'@emnapi/runtime@1.9.1':
|
|
resolution: {integrity: sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==}
|
|
|
|
'@emnapi/wasi-threads@1.2.0':
|
|
resolution: {integrity: sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==}
|
|
|
|
'@grpc/grpc-js@1.14.3':
|
|
resolution: {integrity: sha512-Iq8QQQ/7X3Sac15oB6p0FmUg/klxQvXLeileoqrTRGJYLV+/9tubbr9ipz0GKHjmXVsgFPo/+W+2cA8eNcR+XA==}
|
|
engines: {node: '>=12.10.0'}
|
|
|
|
'@grpc/proto-loader@0.8.0':
|
|
resolution: {integrity: sha512-rc1hOQtjIWGxcxpb9aHAfLpIctjEnsDehj0DAiVfBlmT84uvR0uUtN2hEi/ecvWVjXUGf5qPF4qEgiLOx1YIMQ==}
|
|
engines: {node: '>=6'}
|
|
hasBin: true
|
|
|
|
'@img/sharp-darwin-arm64@0.34.5':
|
|
resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==}
|
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
cpu: [arm64]
|
|
os: [darwin]
|
|
|
|
'@img/sharp-darwin-x64@0.34.5':
|
|
resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==}
|
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
cpu: [x64]
|
|
os: [darwin]
|
|
|
|
'@img/sharp-libvips-darwin-arm64@1.2.4':
|
|
resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==}
|
|
cpu: [arm64]
|
|
os: [darwin]
|
|
|
|
'@img/sharp-libvips-darwin-x64@1.2.4':
|
|
resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==}
|
|
cpu: [x64]
|
|
os: [darwin]
|
|
|
|
'@img/sharp-libvips-linux-arm64@1.2.4':
|
|
resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
|
|
'@img/sharp-libvips-linux-arm@1.2.4':
|
|
resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
|
|
cpu: [arm]
|
|
os: [linux]
|
|
|
|
'@img/sharp-libvips-linux-x64@1.2.4':
|
|
resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
|
|
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
|
|
resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
|
|
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
|
|
resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
|
|
'@img/sharp-linux-arm64@0.34.5':
|
|
resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
|
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
|
|
'@img/sharp-linux-arm@0.34.5':
|
|
resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
|
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
cpu: [arm]
|
|
os: [linux]
|
|
|
|
'@img/sharp-linux-x64@0.34.5':
|
|
resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
|
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
|
|
'@img/sharp-linuxmusl-arm64@0.34.5':
|
|
resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
|
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
|
|
'@img/sharp-linuxmusl-x64@0.34.5':
|
|
resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
|
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
|
|
'@img/sharp-win32-arm64@0.34.5':
|
|
resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==}
|
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
cpu: [arm64]
|
|
os: [win32]
|
|
|
|
'@img/sharp-win32-x64@0.34.5':
|
|
resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==}
|
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
cpu: [x64]
|
|
os: [win32]
|
|
|
|
'@jridgewell/gen-mapping@0.3.13':
|
|
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
|
|
|
|
'@jridgewell/resolve-uri@3.1.2':
|
|
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
|
engines: {node: '>=6.0.0'}
|
|
|
|
'@jridgewell/source-map@0.3.11':
|
|
resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==}
|
|
|
|
'@jridgewell/sourcemap-codec@1.5.5':
|
|
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
|
|
'@jridgewell/trace-mapping@0.3.31':
|
|
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
|
|
'@js-sdsl/ordered-map@4.4.2':
|
|
resolution: {integrity: sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==}
|
|
|
|
'@jsonjoy.com/base64@1.1.2':
|
|
resolution: {integrity: sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/base64@17.67.0':
|
|
resolution: {integrity: sha512-5SEsJGsm15aP8TQGkDfJvz9axgPwAEm98S5DxOuYe8e1EbfajcDmgeXXzccEjh+mLnjqEKrkBdjHWS5vFNwDdw==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/buffers@1.2.1':
|
|
resolution: {integrity: sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/buffers@17.67.0':
|
|
resolution: {integrity: sha512-tfExRpYxBvi32vPs9ZHaTjSP4fHAfzSmcahOfNxtvGHcyJel+aibkPlGeBB+7AoC6hL7lXIE++8okecBxx7lcw==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/codegen@1.0.0':
|
|
resolution: {integrity: sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/codegen@17.67.0':
|
|
resolution: {integrity: sha512-idnkUplROpdBOV0HMcwhsCUS5TRUi9poagdGs70A6S4ux9+/aPuKbh8+UYRTLYQHtXvAdNfQWXDqZEx5k4Dj2Q==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/fs-core@4.56.11':
|
|
resolution: {integrity: sha512-wThHjzUp01ImIjfCwhs+UnFkeGPFAymwLEkOtenHewaKe2pTP12p6r1UuwikA9NEvNf9Vlck92r8fb8n/MWM5w==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/fs-fsa@4.56.11':
|
|
resolution: {integrity: sha512-ZYlF3XbMayyp97xEN8ZvYutU99PCHjM64mMZvnCseXkCJXJDVLAwlF8Q/7q/xiWQRsv3pQBj1WXHd9eEyYcaCQ==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/fs-node-builtins@4.56.11':
|
|
resolution: {integrity: sha512-CNmt3a0zMCIhniFLXtzPWuUxXFU+U+2VyQiIrgt/rRVeEJNrMQUABaRbVxR0Ouw1LyR9RjaEkPM6nYpED+y43A==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/fs-node-to-fsa@4.56.11':
|
|
resolution: {integrity: sha512-5OzGdvJDgZVo+xXWEYo72u81zpOWlxlbG4d4nL+hSiW+LKlua/dldNgPrpWxtvhgyntmdFQad2UTxFyGjJAGhA==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/fs-node-utils@4.56.11':
|
|
resolution: {integrity: sha512-JADOZFDA3wRfsuxkT0+MYc4F9hJO2PYDaY66kRTG6NqGX3+bqmKu66YFYAbII/tEmQWPZeHoClUB23rtQM9UPg==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/fs-node@4.56.11':
|
|
resolution: {integrity: sha512-D65YrnP6wRuZyEWoSFnBJSr5zARVpVBGctnhie4rCsMuGXNzX7IHKaOt85/Aj7SSoG1N2+/xlNjWmkLvZ2H3Tg==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/fs-print@4.56.11':
|
|
resolution: {integrity: sha512-rnaKRgCRIn8JGTjxhS0JPE38YM3Pj/H7SW4/tglhIPbfKEkky7dpPayNKV2qy25SZSL15oFVgH/62dMZ/z7cyA==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/fs-snapshot@4.56.11':
|
|
resolution: {integrity: sha512-IIldPX+cIRQuUol9fQzSS3hqyECxVpYMJQMqdU3dCKZFRzEl1rkIkw4P6y7Oh493sI7YdxZlKr/yWdzEWZ1wGQ==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/json-pack@1.21.0':
|
|
resolution: {integrity: sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/json-pack@17.67.0':
|
|
resolution: {integrity: sha512-t0ejURcGaZsn1ClbJ/3kFqSOjlryd92eQY465IYrezsXmPcfHPE/av4twRSxf6WE+TkZgLY+71vCZbiIiFKA/w==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/json-pointer@1.0.2':
|
|
resolution: {integrity: sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/json-pointer@17.67.0':
|
|
resolution: {integrity: sha512-+iqOFInH+QZGmSuaybBUNdh7yvNrXvqR+h3wjXm0N/3JK1EyyFAeGJvqnmQL61d1ARLlk/wJdFKSL+LHJ1eaUA==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/util@1.9.0':
|
|
resolution: {integrity: sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@jsonjoy.com/util@17.67.0':
|
|
resolution: {integrity: sha512-6+8xBaz1rLSohlGh68D1pdw3AwDi9xydm8QNlAFkvnavCJYSze+pxoW2VKP8p308jtlMRLs5NTHfPlZLd4w7ew==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
'@napi-rs/wasm-runtime@1.1.1':
|
|
resolution: {integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==}
|
|
|
|
'@oxc-project/types@0.122.0':
|
|
resolution: {integrity: sha512-oLAl5kBpV4w69UtFZ9xqcmTi+GENWOcPF7FCrczTiBbmC0ibXxCwyvZGbO39rCVEuLGAZM84DH0pUIyyv/YJzA==}
|
|
|
|
'@protobufjs/aspromise@1.1.2':
|
|
resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==}
|
|
|
|
'@protobufjs/base64@1.1.2':
|
|
resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==}
|
|
|
|
'@protobufjs/codegen@2.0.4':
|
|
resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==}
|
|
|
|
'@protobufjs/eventemitter@1.1.0':
|
|
resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==}
|
|
|
|
'@protobufjs/fetch@1.1.0':
|
|
resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==}
|
|
|
|
'@protobufjs/float@1.0.2':
|
|
resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==}
|
|
|
|
'@protobufjs/inquire@1.1.0':
|
|
resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==}
|
|
|
|
'@protobufjs/path@1.1.2':
|
|
resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==}
|
|
|
|
'@protobufjs/pool@1.1.0':
|
|
resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==}
|
|
|
|
'@protobufjs/utf8@1.1.0':
|
|
resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==}
|
|
|
|
'@quansync/fs@1.0.0':
|
|
resolution: {integrity: sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==}
|
|
|
|
'@rolldown/binding-android-arm64@1.0.0-rc.11':
|
|
resolution: {integrity: sha512-SJ+/g+xNnOh6NqYxD0V3uVN4W3VfnrGsC9/hoglicgTNfABFG9JjISvkkU0dNY84MNHLWyOgxP9v9Y9pX4S7+A==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
cpu: [arm64]
|
|
os: [android]
|
|
|
|
'@rolldown/binding-darwin-arm64@1.0.0-rc.11':
|
|
resolution: {integrity: sha512-7WQgR8SfOPwmDZGFkThUvsmd/nwAWv91oCO4I5LS7RKrssPZmOt7jONN0cW17ydGC1n/+puol1IpoieKqQidmg==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
cpu: [arm64]
|
|
os: [darwin]
|
|
|
|
'@rolldown/binding-darwin-x64@1.0.0-rc.11':
|
|
resolution: {integrity: sha512-39Ks6UvIHq4rEogIfQBoBRusj0Q0nPVWIvqmwBLaT6aqQGIakHdESBVOPRRLacy4WwUPIx4ZKzfZ9PMW+IeyUQ==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
cpu: [x64]
|
|
os: [darwin]
|
|
|
|
'@rolldown/binding-freebsd-x64@1.0.0-rc.11':
|
|
resolution: {integrity: sha512-jfsm0ZHfhiqrvWjJAmzsqiIFPz5e7mAoCOPBNTcNgkiid/LaFKiq92+0ojH+nmJmKYkre4t71BWXUZDNp7vsag==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
cpu: [x64]
|
|
os: [freebsd]
|
|
|
|
'@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11':
|
|
resolution: {integrity: sha512-zjQaUtSyq1nVe3nxmlSCuR96T1LPlpvmJ0SZy0WJFEsV4kFbXcq2u68L4E6O0XeFj4aex9bEauqjW8UQBeAvfQ==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
cpu: [arm]
|
|
os: [linux]
|
|
|
|
'@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11':
|
|
resolution: {integrity: sha512-WMW1yE6IOnehTcFE9eipFkm3XN63zypWlrJQ2iF7NrQ9b2LDRjumFoOGJE8RJJTJCTBAdmLMnJ8uVitACUUo1Q==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
|
|
'@rolldown/binding-linux-arm64-musl@1.0.0-rc.11':
|
|
resolution: {integrity: sha512-jfndI9tsfm4APzjNt6QdBkYwre5lRPUgHeDHoI7ydKUuJvz3lZeCfMsI56BZj+7BYqiKsJm7cfd/6KYV7ubrBg==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
|
|
'@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11':
|
|
resolution: {integrity: sha512-ZlFgw46NOAGMgcdvdYwAGu2Q+SLFA9LzbJLW+iyMOJyhj5wk6P3KEE9Gct4xWwSzFoPI7JCdYmYMzVtlgQ+zfw==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
cpu: [ppc64]
|
|
os: [linux]
|
|
|
|
'@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11':
|
|
resolution: {integrity: sha512-hIOYmuT6ofM4K04XAZd3OzMySEO4K0/nc9+jmNcxNAxRi6c5UWpqfw3KMFV4MVFWL+jQsSh+bGw2VqmaPMTLyw==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
cpu: [s390x]
|
|
os: [linux]
|
|
|
|
'@rolldown/binding-linux-x64-gnu@1.0.0-rc.11':
|
|
resolution: {integrity: sha512-qXBQQO9OvkjjQPLdUVr7Nr2t3QTZI7s4KZtfw7HzBgjbmAPSFwSv4rmET9lLSgq3rH/ndA3ngv3Qb8l2njoPNA==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
|
|
'@rolldown/binding-linux-x64-musl@1.0.0-rc.11':
|
|
resolution: {integrity: sha512-/tpFfoSTzUkH9LPY+cYbqZBDyyX62w5fICq9qzsHLL8uTI6BHip3Q9Uzft0wylk/i8OOwKik8OxW+QAhDmzwmg==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
|
|
'@rolldown/binding-openharmony-arm64@1.0.0-rc.11':
|
|
resolution: {integrity: sha512-mcp3Rio2w72IvdZG0oQ4bM2c2oumtwHfUfKncUM6zGgz0KgPz4YmDPQfnXEiY5t3+KD/i8HG2rOB/LxdmieK2g==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
cpu: [arm64]
|
|
os: [openharmony]
|
|
|
|
'@rolldown/binding-wasm32-wasi@1.0.0-rc.11':
|
|
resolution: {integrity: sha512-LXk5Hii1Ph9asuGRjBuz8TUxdc1lWzB7nyfdoRgI0WGPZKmCxvlKk8KfYysqtr4MfGElu/f/pEQRh8fcEgkrWw==}
|
|
engines: {node: '>=14.0.0'}
|
|
cpu: [wasm32]
|
|
|
|
'@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11':
|
|
resolution: {integrity: sha512-dDwf5otnx0XgRY1yqxOC4ITizcdzS/8cQ3goOWv3jFAo4F+xQYni+hnMuO6+LssHHdJW7+OCVL3CoU4ycnh35Q==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
cpu: [arm64]
|
|
os: [win32]
|
|
|
|
'@rolldown/binding-win32-x64-msvc@1.0.0-rc.11':
|
|
resolution: {integrity: sha512-LN4/skhSggybX71ews7dAj6r2geaMJfm3kMbK2KhFMg9B10AZXnKoLCVVgzhMHL0S+aKtr4p8QbAW8k+w95bAA==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
cpu: [x64]
|
|
os: [win32]
|
|
|
|
'@rolldown/pluginutils@1.0.0-rc.11':
|
|
resolution: {integrity: sha512-xQO9vbwBecJRv9EUcQ/y0dzSTJgA7Q6UVN7xp6B81+tBGSLVAK03yJ9NkJaUA7JFD91kbjxRSC/mDnmvXzbHoQ==}
|
|
|
|
'@swc/core-darwin-arm64@1.15.18':
|
|
resolution: {integrity: sha512-+mIv7uBuSaywN3C9LNuWaX1jJJ3SKfiJuE6Lr3bd+/1Iv8oMU7oLBjYMluX1UrEPzwN2qCdY6Io0yVicABoCwQ==}
|
|
engines: {node: '>=10'}
|
|
cpu: [arm64]
|
|
os: [darwin]
|
|
|
|
'@swc/core-darwin-x64@1.15.18':
|
|
resolution: {integrity: sha512-wZle0eaQhnzxWX5V/2kEOI6Z9vl/lTFEC6V4EWcn+5pDjhemCpQv9e/TDJ0GIoiClX8EDWRvuZwh+Z3dhL1NAg==}
|
|
engines: {node: '>=10'}
|
|
cpu: [x64]
|
|
os: [darwin]
|
|
|
|
'@swc/core-linux-arm-gnueabihf@1.15.18':
|
|
resolution: {integrity: sha512-ao61HGXVqrJFHAcPtF4/DegmwEkVCo4HApnotLU8ognfmU8x589z7+tcf3hU+qBiU1WOXV5fQX6W9Nzs6hjxDw==}
|
|
engines: {node: '>=10'}
|
|
cpu: [arm]
|
|
os: [linux]
|
|
|
|
'@swc/core-linux-arm64-gnu@1.15.18':
|
|
resolution: {integrity: sha512-3xnctOBLIq3kj8PxOCgPrGjBLP/kNOddr6f5gukYt/1IZxsITQaU9TDyjeX6jG+FiCIHjCuWuffsyQDL5Ew1bg==}
|
|
engines: {node: '>=10'}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
|
|
'@swc/core-linux-arm64-musl@1.15.18':
|
|
resolution: {integrity: sha512-0a+Lix+FSSHBSBOA0XznCcHo5/1nA6oLLjcnocvzXeqtdjnPb+SvchItHI+lfeiuj1sClYPDvPMLSLyXFaiIKw==}
|
|
engines: {node: '>=10'}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
|
|
'@swc/core-linux-x64-gnu@1.15.18':
|
|
resolution: {integrity: sha512-wG9J8vReUlpaHz4KOD/5UE1AUgirimU4UFT9oZmupUDEofxJKYb1mTA/DrMj0s78bkBiNI+7Fo2EgPuvOJfuAA==}
|
|
engines: {node: '>=10'}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
|
|
'@swc/core-linux-x64-musl@1.15.18':
|
|
resolution: {integrity: sha512-4nwbVvCphKzicwNWRmvD5iBaZj8JYsRGa4xOxJmOyHlMDpsvvJ2OR2cODlvWyGFH6BYL1MfIAK3qph3hp0Az6g==}
|
|
engines: {node: '>=10'}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
|
|
'@swc/core-win32-arm64-msvc@1.15.18':
|
|
resolution: {integrity: sha512-zk0RYO+LjiBCat2RTMHzAWaMky0cra9loH4oRrLKLLNuL+jarxKLFDA8xTZWEkCPLjUTwlRN7d28eDLLMgtUcQ==}
|
|
engines: {node: '>=10'}
|
|
cpu: [arm64]
|
|
os: [win32]
|
|
|
|
'@swc/core-win32-ia32-msvc@1.15.18':
|
|
resolution: {integrity: sha512-yVuTrZ0RccD5+PEkpcLOBAuPbYBXS6rslENvIXfvJGXSdX5QGi1ehC4BjAMl5FkKLiam4kJECUI0l7Hq7T1vwg==}
|
|
engines: {node: '>=10'}
|
|
cpu: [ia32]
|
|
os: [win32]
|
|
|
|
'@swc/core-win32-x64-msvc@1.15.18':
|
|
resolution: {integrity: sha512-7NRmE4hmUQNCbYU3Hn9Tz57mK9Qq4c97ZS+YlamlK6qG9Fb5g/BB3gPDe0iLlJkns/sYv2VWSkm8c3NmbEGjbg==}
|
|
engines: {node: '>=10'}
|
|
cpu: [x64]
|
|
os: [win32]
|
|
|
|
'@swc/core@1.15.18':
|
|
resolution: {integrity: sha512-z87aF9GphWp//fnkRsqvtY+inMVPgYW3zSlXH1kJFvRT5H/wiAn+G32qW5l3oEk63KSF1x3Ov0BfHCObAmT8RA==}
|
|
engines: {node: '>=10'}
|
|
peerDependencies:
|
|
'@swc/helpers': '>=0.5.17'
|
|
peerDependenciesMeta:
|
|
'@swc/helpers':
|
|
optional: true
|
|
|
|
'@swc/counter@0.1.3':
|
|
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
|
|
|
|
'@swc/types@0.1.25':
|
|
resolution: {integrity: sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g==}
|
|
|
|
'@temporalio/activity@1.15.0':
|
|
resolution: {integrity: sha512-kKEIrHMTsANiEpDVZd+v3OT6kU20UtcvAK7iibJNzQnoZUGC7XnqdKQlBuGYBxgpJzD9ppGgskXRczW+XU5Kng==}
|
|
engines: {node: '>= 20.0.0'}
|
|
|
|
'@temporalio/client@1.15.0':
|
|
resolution: {integrity: sha512-SxTGqRIa2+Vy4P9+06ZpUf4u7ZZmOXfx/kr9XvNqAApLxTMKjTQIg5OH5Wt4JLUtIR7dFkuHIyhewdRyG+hSsQ==}
|
|
engines: {node: '>= 20.0.0'}
|
|
|
|
'@temporalio/common@1.15.0':
|
|
resolution: {integrity: sha512-tBfC3fdOExsNoS5krkMUXnaMtCRKj05Jts4+TH+cgHpbys68nslFvUQLqwPIw2x6155Divb9MF219a/75itbTg==}
|
|
engines: {node: '>= 20.0.0'}
|
|
|
|
'@temporalio/core-bridge@1.15.0':
|
|
resolution: {integrity: sha512-Qdrs5zju5MiOwmERCWzQ6uHZwn1JaQk/ppS2UHbxqZndjbAEFPDU9KQqFLkxWAicHMy7+LGPnA4DpVOANGlTZA==}
|
|
engines: {node: '>= 20.0.0'}
|
|
|
|
'@temporalio/nexus@1.15.0':
|
|
resolution: {integrity: sha512-E6CdIjskkbK2aObxcb76Z4V3o1D3QDxEtsxmuHX5D7HEABuYGdV+oeOzDyxMlfeY9GyIM9Nvky4XCiSz2h2XRA==}
|
|
engines: {node: '>= 20.0.0'}
|
|
|
|
'@temporalio/proto@1.15.0':
|
|
resolution: {integrity: sha512-Awy4Fjzyba7Pg/CVZjjQ3x2CWkDL1qELyTZWcLlyjXq8bX694JVfBsmiMmF6tHn5/ySOIxDTcc0MSScZ0oKX5A==}
|
|
engines: {node: '>= 20.0.0'}
|
|
|
|
'@temporalio/worker@1.15.0':
|
|
resolution: {integrity: sha512-9e0AWP2OxYFgeztMdkoWYbDVqmNubreRkG7/frVKFT3xHdIOrFQ2W6Yomv61q3oKMXTIrpvjClHtiTjAUr70uA==}
|
|
engines: {node: '>= 20.0.0'}
|
|
|
|
'@temporalio/workflow@1.15.0':
|
|
resolution: {integrity: sha512-VaMhVtlA0hLLM/pna26vFSdn5W1Arq2+ccgItdbdRdZUa0X8eW2B7sl/PcUYQOWc4aMUGnvPATKUGUoFKyCxSg==}
|
|
engines: {node: '>= 20.0.0'}
|
|
|
|
'@tybys/wasm-util@0.10.1':
|
|
resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
|
|
|
|
'@types/eslint-scope@3.7.7':
|
|
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
|
|
|
|
'@types/eslint@9.6.1':
|
|
resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
|
|
|
|
'@types/estree@1.0.8':
|
|
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
|
|
'@types/js-yaml@4.0.9':
|
|
resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==}
|
|
|
|
'@types/jsesc@2.5.1':
|
|
resolution: {integrity: sha512-9VN+6yxLOPLOav+7PwjZbxiID2bVaeq0ED4qSQmdQTdjnXJSaCVKTR58t15oqH1H5t8Ng2ZX1SabJVoN9Q34bw==}
|
|
|
|
'@types/json-schema@7.0.15':
|
|
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
|
|
|
'@types/node@25.5.0':
|
|
resolution: {integrity: sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==}
|
|
|
|
'@webassemblyjs/ast@1.14.1':
|
|
resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
|
|
|
|
'@webassemblyjs/floating-point-hex-parser@1.13.2':
|
|
resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==}
|
|
|
|
'@webassemblyjs/helper-api-error@1.13.2':
|
|
resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==}
|
|
|
|
'@webassemblyjs/helper-buffer@1.14.1':
|
|
resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==}
|
|
|
|
'@webassemblyjs/helper-numbers@1.13.2':
|
|
resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==}
|
|
|
|
'@webassemblyjs/helper-wasm-bytecode@1.13.2':
|
|
resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==}
|
|
|
|
'@webassemblyjs/helper-wasm-section@1.14.1':
|
|
resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==}
|
|
|
|
'@webassemblyjs/ieee754@1.13.2':
|
|
resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==}
|
|
|
|
'@webassemblyjs/leb128@1.13.2':
|
|
resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==}
|
|
|
|
'@webassemblyjs/utf8@1.13.2':
|
|
resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==}
|
|
|
|
'@webassemblyjs/wasm-edit@1.14.1':
|
|
resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==}
|
|
|
|
'@webassemblyjs/wasm-gen@1.14.1':
|
|
resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==}
|
|
|
|
'@webassemblyjs/wasm-opt@1.14.1':
|
|
resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==}
|
|
|
|
'@webassemblyjs/wasm-parser@1.14.1':
|
|
resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==}
|
|
|
|
'@webassemblyjs/wast-printer@1.14.1':
|
|
resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==}
|
|
|
|
'@xtuc/ieee754@1.2.0':
|
|
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
|
|
|
|
'@xtuc/long@4.2.2':
|
|
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
|
|
|
|
abort-controller@3.0.0:
|
|
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
|
|
engines: {node: '>=6.5'}
|
|
|
|
acorn-import-phases@1.0.4:
|
|
resolution: {integrity: sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==}
|
|
engines: {node: '>=10.13.0'}
|
|
peerDependencies:
|
|
acorn: ^8.14.0
|
|
|
|
acorn@8.16.0:
|
|
resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
|
|
engines: {node: '>=0.4.0'}
|
|
hasBin: true
|
|
|
|
ajv-formats@2.1.1:
|
|
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
|
|
peerDependencies:
|
|
ajv: ^8.0.0
|
|
peerDependenciesMeta:
|
|
ajv:
|
|
optional: true
|
|
|
|
ajv-keywords@5.1.0:
|
|
resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
|
|
peerDependencies:
|
|
ajv: ^8.8.2
|
|
|
|
ajv@8.18.0:
|
|
resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
|
|
|
|
ansi-regex@5.0.1:
|
|
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
|
|
engines: {node: '>=8'}
|
|
|
|
ansi-styles@4.3.0:
|
|
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
|
engines: {node: '>=8'}
|
|
|
|
ansis@4.2.0:
|
|
resolution: {integrity: sha512-HqZ5rWlFjGiV0tDm3UxxgNRqsOTniqoKZu0pIAfh7TZQMGuZK+hH0drySty0si0QXj1ieop4+SkSfPZBPPkHig==}
|
|
engines: {node: '>=14'}
|
|
|
|
argparse@2.0.1:
|
|
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
|
|
|
ast-kit@3.0.0-beta.1:
|
|
resolution: {integrity: sha512-trmleAnZ2PxN/loHWVhhx1qeOHSRXq4TDsBBxq3GqeJitfk3+jTQ+v/C1km/KYq9M7wKqCewMh+/NAvVH7m+bw==}
|
|
engines: {node: '>=20.19.0'}
|
|
|
|
baseline-browser-mapping@2.10.8:
|
|
resolution: {integrity: sha512-PCLz/LXGBsNTErbtB6i5u4eLpHeMfi93aUv5duMmj6caNu6IphS4q6UevDnL36sZQv9lrP11dbPKGMaXPwMKfQ==}
|
|
engines: {node: '>=6.0.0'}
|
|
hasBin: true
|
|
|
|
birpc@4.0.0:
|
|
resolution: {integrity: sha512-LShSxJP0KTmd101b6DRyGBj57LZxSDYWKitQNW/mi8GRMvZb078Uf9+pveax1DrVL89vm7mWe+TovdI/UDOuPw==}
|
|
|
|
browserslist@4.28.1:
|
|
resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
|
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
hasBin: true
|
|
|
|
buffer-from@1.1.2:
|
|
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
|
|
|
|
cac@7.0.0:
|
|
resolution: {integrity: sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ==}
|
|
engines: {node: '>=20.19.0'}
|
|
|
|
caniuse-lite@1.0.30001778:
|
|
resolution: {integrity: sha512-PN7uxFL+ExFJO61aVmP1aIEG4i9whQd4eoSCebav62UwDyp5OHh06zN4jqKSMePVgxHifCw1QJxdRkA1Pisekg==}
|
|
|
|
chokidar@5.0.0:
|
|
resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==}
|
|
engines: {node: '>= 20.19.0'}
|
|
|
|
chrome-trace-event@1.0.4:
|
|
resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
|
|
engines: {node: '>=6.0'}
|
|
|
|
cliui@8.0.1:
|
|
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
|
|
engines: {node: '>=12'}
|
|
|
|
color-convert@2.0.1:
|
|
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
|
engines: {node: '>=7.0.0'}
|
|
|
|
color-name@1.1.4:
|
|
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
|
|
commander@2.20.3:
|
|
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
|
|
|
|
defu@6.1.4:
|
|
resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==}
|
|
|
|
dotenv@16.6.1:
|
|
resolution: {integrity: sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==}
|
|
engines: {node: '>=12'}
|
|
|
|
dotenv@17.3.1:
|
|
resolution: {integrity: sha512-IO8C/dzEb6O3F9/twg6ZLXz164a2fhTnEWb95H23Dm4OuN+92NmEAlTrupP9VW6Jm3sO26tQlqyvyi4CsnY9GA==}
|
|
engines: {node: '>=12'}
|
|
|
|
dts-resolver@2.1.3:
|
|
resolution: {integrity: sha512-bihc7jPC90VrosXNzK0LTE2cuLP6jr0Ro8jk+kMugHReJVLIpHz/xadeq3MhuwyO4TD4OA3L1Q8pBBFRc08Tsw==}
|
|
engines: {node: '>=20.19.0'}
|
|
peerDependencies:
|
|
oxc-resolver: '>=11.0.0'
|
|
peerDependenciesMeta:
|
|
oxc-resolver:
|
|
optional: true
|
|
|
|
electron-to-chromium@1.5.313:
|
|
resolution: {integrity: sha512-QBMrTWEf00GXZmJyx2lbYD45jpI3TUFnNIzJ5BBc8piGUDwMPa1GV6HJWTZVvY/eiN3fSopl7NRbgGp9sZ9LTA==}
|
|
|
|
emoji-regex@8.0.0:
|
|
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
|
|
|
empathic@2.0.0:
|
|
resolution: {integrity: sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==}
|
|
engines: {node: '>=14'}
|
|
|
|
enhanced-resolve@5.20.0:
|
|
resolution: {integrity: sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==}
|
|
engines: {node: '>=10.13.0'}
|
|
|
|
es-module-lexer@2.0.0:
|
|
resolution: {integrity: sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==}
|
|
|
|
escalade@3.2.0:
|
|
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
engines: {node: '>=6'}
|
|
|
|
eslint-scope@5.1.1:
|
|
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
|
|
engines: {node: '>=8.0.0'}
|
|
|
|
esrecurse@4.3.0:
|
|
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
|
engines: {node: '>=4.0'}
|
|
|
|
estraverse@4.3.0:
|
|
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
|
|
engines: {node: '>=4.0'}
|
|
|
|
estraverse@5.3.0:
|
|
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
|
|
engines: {node: '>=4.0'}
|
|
|
|
estree-walker@3.0.3:
|
|
resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
|
|
|
|
event-target-shim@5.0.1:
|
|
resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==}
|
|
engines: {node: '>=6'}
|
|
|
|
events@3.3.0:
|
|
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
|
|
engines: {node: '>=0.8.x'}
|
|
|
|
fast-deep-equal@3.1.3:
|
|
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
|
|
|
fast-uri@3.1.0:
|
|
resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
|
|
|
|
fdir@6.5.0:
|
|
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
|
|
engines: {node: '>=12.0.0'}
|
|
peerDependencies:
|
|
picomatch: ^3 || ^4
|
|
peerDependenciesMeta:
|
|
picomatch:
|
|
optional: true
|
|
|
|
fs-monkey@1.1.0:
|
|
resolution: {integrity: sha512-QMUezzXWII9EV5aTFXW1UBVUO77wYPpjqIF8/AviUCThNeSYZykpoTixUeaNNBwmCev0AMDWMAni+f8Hxb1IFw==}
|
|
|
|
get-caller-file@2.0.5:
|
|
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
|
|
engines: {node: 6.* || 8.* || >= 10.*}
|
|
|
|
get-tsconfig@4.13.6:
|
|
resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==}
|
|
|
|
glob-to-regex.js@1.2.0:
|
|
resolution: {integrity: sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
glob-to-regexp@0.4.1:
|
|
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
|
|
|
|
graceful-fs@4.2.11:
|
|
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
|
|
|
has-flag@4.0.0:
|
|
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
|
engines: {node: '>=8'}
|
|
|
|
heap-js@2.7.1:
|
|
resolution: {integrity: sha512-EQfezRg0NCZGNlhlDR3Evrw1FVL2G3LhU7EgPoxufQKruNBSYA8MiRPHeWbU+36o+Fhel0wMwM+sLEiBAlNLJA==}
|
|
engines: {node: '>=10.0.0'}
|
|
|
|
hookable@6.1.0:
|
|
resolution: {integrity: sha512-ZoKZSJgu8voGK2geJS+6YtYjvIzu9AOM/KZXsBxr83uhLL++e9pEv/dlgwgy3dvHg06kTz6JOh1hk3C8Ceiymw==}
|
|
|
|
hyperdyperid@1.2.0:
|
|
resolution: {integrity: sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==}
|
|
engines: {node: '>=10.18'}
|
|
|
|
iconv-lite@0.6.3:
|
|
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
|
|
engines: {node: '>=0.10.0'}
|
|
|
|
import-without-cache@0.2.5:
|
|
resolution: {integrity: sha512-B6Lc2s6yApwnD2/pMzFh/d5AVjdsDXjgkeJ766FmFuJELIGHNycKRj+l3A39yZPM4CchqNCB4RITEAYB1KUM6A==}
|
|
engines: {node: '>=20.19.0'}
|
|
|
|
is-fullwidth-code-point@3.0.0:
|
|
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
|
|
engines: {node: '>=8'}
|
|
|
|
jest-worker@27.5.1:
|
|
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
|
|
engines: {node: '>= 10.13.0'}
|
|
|
|
js-yaml@4.1.1:
|
|
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
|
|
hasBin: true
|
|
|
|
jsesc@3.1.0:
|
|
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
|
|
engines: {node: '>=6'}
|
|
hasBin: true
|
|
|
|
json-parse-even-better-errors@2.3.1:
|
|
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
|
|
|
|
json-schema-traverse@1.0.0:
|
|
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
|
|
|
|
loader-runner@4.3.1:
|
|
resolution: {integrity: sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==}
|
|
engines: {node: '>=6.11.5'}
|
|
|
|
lodash.camelcase@4.3.0:
|
|
resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
|
|
|
|
long@5.3.2:
|
|
resolution: {integrity: sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==}
|
|
|
|
memfs@4.56.11:
|
|
resolution: {integrity: sha512-/GodtwVeKVIHZKLUSr2ZdOxKBC5hHki4JNCU22DoCGPEHr5o2PD5U721zvESKyWwCfTfavFl9WZYgA13OAYK0g==}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
merge-stream@2.0.0:
|
|
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
|
|
|
|
mime-db@1.52.0:
|
|
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
|
|
engines: {node: '>= 0.6'}
|
|
|
|
mime-types@2.1.35:
|
|
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
|
|
engines: {node: '>= 0.6'}
|
|
|
|
ms@3.0.0-canary.1:
|
|
resolution: {integrity: sha512-kh8ARjh8rMN7Du2igDRO9QJnqCb2xYTJxyQYK7vJJS4TvLLmsbyhiKpSW+t+y26gyOyMd0riphX0GeWKU3ky5g==}
|
|
engines: {node: '>=12.13'}
|
|
|
|
neo-async@2.6.2:
|
|
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
|
|
|
|
nexus-rpc@0.0.1:
|
|
resolution: {integrity: sha512-hAWn8Hh2eewpB5McXR5EW81R3pR/ziuGhKCF3wFyUVCklanPqrIgMNr7jKCbzXeNVad0nUDfWpFRqh2u+zxQtw==}
|
|
engines: {node: '>= 18.0.0'}
|
|
|
|
node-releases@2.0.36:
|
|
resolution: {integrity: sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==}
|
|
|
|
obug@2.1.1:
|
|
resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==}
|
|
|
|
pathe@2.0.3:
|
|
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
|
|
|
|
picocolors@1.1.1:
|
|
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
|
|
picomatch@4.0.4:
|
|
resolution: {integrity: sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==}
|
|
engines: {node: '>=12'}
|
|
|
|
proto3-json-serializer@2.0.2:
|
|
resolution: {integrity: sha512-SAzp/O4Yh02jGdRc+uIrGoe87dkN/XtwxfZ4ZyafJHymd79ozp5VG5nyZ7ygqPM5+cpLDjjGnYFUkngonyDPOQ==}
|
|
engines: {node: '>=14.0.0'}
|
|
|
|
protobufjs@7.5.4:
|
|
resolution: {integrity: sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg==}
|
|
engines: {node: '>=12.0.0'}
|
|
|
|
quansync@1.0.0:
|
|
resolution: {integrity: sha512-5xZacEEufv3HSTPQuchrvV6soaiACMFnq1H8wkVioctoH3TRha9Sz66lOxRwPK/qZj7HPiSveih9yAyh98gvqA==}
|
|
|
|
readdirp@5.0.0:
|
|
resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==}
|
|
engines: {node: '>= 20.19.0'}
|
|
|
|
require-directory@2.1.1:
|
|
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
|
|
engines: {node: '>=0.10.0'}
|
|
|
|
require-from-string@2.0.2:
|
|
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
|
|
engines: {node: '>=0.10.0'}
|
|
|
|
resolve-pkg-maps@1.0.0:
|
|
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
|
|
rolldown-plugin-dts@0.22.5:
|
|
resolution: {integrity: sha512-M/HXfM4cboo+jONx9Z0X+CUf3B5tCi7ni+kR5fUW50Fp9AlZk0oVLesibGWgCXDKFp5lpgQ9yhKoImUFjl3VZw==}
|
|
engines: {node: '>=20.19.0'}
|
|
peerDependencies:
|
|
'@ts-macro/tsc': ^0.3.6
|
|
'@typescript/native-preview': '>=7.0.0-dev.20250601.1'
|
|
rolldown: ^1.0.0-rc.3
|
|
typescript: ^5.0.0 || ^6.0.0-beta
|
|
vue-tsc: ~3.2.0
|
|
peerDependenciesMeta:
|
|
'@ts-macro/tsc':
|
|
optional: true
|
|
'@typescript/native-preview':
|
|
optional: true
|
|
typescript:
|
|
optional: true
|
|
vue-tsc:
|
|
optional: true
|
|
|
|
rolldown@1.0.0-rc.11:
|
|
resolution: {integrity: sha512-NRjoKMusSjfRbSYiH3VSumlkgFe7kYAa3pzVOsVYVFY3zb5d7nS+a3KGQ7hJKXuYWbzJKPVQ9Wxq2UvyK+ENpw==}
|
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
hasBin: true
|
|
|
|
rxjs@7.8.2:
|
|
resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
|
|
|
|
safer-buffer@2.1.2:
|
|
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
|
|
|
schema-utils@4.3.3:
|
|
resolution: {integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==}
|
|
engines: {node: '>= 10.13.0'}
|
|
|
|
semver@7.7.4:
|
|
resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
|
|
engines: {node: '>=10'}
|
|
hasBin: true
|
|
|
|
sisteransi@1.0.5:
|
|
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
|
|
|
|
smol-toml@1.6.1:
|
|
resolution: {integrity: sha512-dWUG8F5sIIARXih1DTaQAX4SsiTXhInKf1buxdY9DIg4ZYPZK5nGM1VRIYmEbDbsHt7USo99xSLFu5Q1IqTmsg==}
|
|
engines: {node: '>= 18'}
|
|
|
|
source-map-js@1.2.1:
|
|
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
engines: {node: '>=0.10.0'}
|
|
|
|
source-map-loader@4.0.2:
|
|
resolution: {integrity: sha512-oYwAqCuL0OZhBoSgmdrLa7mv9MjommVMiQIWgcztf+eS4+8BfcUee6nenFnDhKOhzAVnk5gpZdfnz1iiBv+5sg==}
|
|
engines: {node: '>= 14.15.0'}
|
|
peerDependencies:
|
|
webpack: ^5.72.1
|
|
|
|
source-map-support@0.5.21:
|
|
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
|
|
|
|
source-map@0.6.1:
|
|
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
|
|
engines: {node: '>=0.10.0'}
|
|
|
|
source-map@0.7.6:
|
|
resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
|
|
engines: {node: '>= 12'}
|
|
|
|
string-width@4.2.3:
|
|
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
|
|
engines: {node: '>=8'}
|
|
|
|
strip-ansi@6.0.1:
|
|
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
|
|
engines: {node: '>=8'}
|
|
|
|
supports-color@8.1.1:
|
|
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
|
|
engines: {node: '>=10'}
|
|
|
|
swc-loader@0.2.7:
|
|
resolution: {integrity: sha512-nwYWw3Fh9ame3Rtm7StS9SBLpHRRnYcK7bnpF3UKZmesAK0gw2/ADvlURFAINmPvKtDLzp+GBiP9yLoEjg6S9w==}
|
|
peerDependencies:
|
|
'@swc/core': ^1.2.147
|
|
webpack: '>=2'
|
|
|
|
tapable@2.3.0:
|
|
resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
|
|
engines: {node: '>=6'}
|
|
|
|
terser-webpack-plugin@5.4.0:
|
|
resolution: {integrity: sha512-Bn5vxm48flOIfkdl5CaD2+1CiUVbonWQ3KQPyP7/EuIl9Gbzq/gQFOzaMFUEgVjB1396tcK0SG8XcNJ/2kDH8g==}
|
|
engines: {node: '>= 10.13.0'}
|
|
peerDependencies:
|
|
'@swc/core': '*'
|
|
esbuild: '*'
|
|
uglify-js: '*'
|
|
webpack: ^5.1.0
|
|
peerDependenciesMeta:
|
|
'@swc/core':
|
|
optional: true
|
|
esbuild:
|
|
optional: true
|
|
uglify-js:
|
|
optional: true
|
|
|
|
terser@5.46.0:
|
|
resolution: {integrity: sha512-jTwoImyr/QbOWFFso3YoU3ik0jBBDJ6JTOQiy/J2YxVJdZCc+5u7skhNwiOR3FQIygFqVUPHl7qbbxtjW2K3Qg==}
|
|
engines: {node: '>=10'}
|
|
hasBin: true
|
|
|
|
thingies@2.5.0:
|
|
resolution: {integrity: sha512-s+2Bwztg6PhWUD7XMfeYm5qliDdSiZm7M7n8KjTkIsm3l/2lgVRc2/Gx/v+ZX8lT4FMA+i8aQvhcWylldc+ZNw==}
|
|
engines: {node: '>=10.18'}
|
|
peerDependencies:
|
|
tslib: ^2
|
|
|
|
tinyexec@1.0.4:
|
|
resolution: {integrity: sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==}
|
|
engines: {node: '>=18'}
|
|
|
|
tinyglobby@0.2.15:
|
|
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
|
|
engines: {node: '>=12.0.0'}
|
|
|
|
tree-dump@1.1.0:
|
|
resolution: {integrity: sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA==}
|
|
engines: {node: '>=10.0'}
|
|
peerDependencies:
|
|
tslib: '2'
|
|
|
|
tree-kill@1.2.2:
|
|
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
|
|
hasBin: true
|
|
|
|
tsdown@0.21.5:
|
|
resolution: {integrity: sha512-TlgNhfPioAD6ECCUnZsxcUsXXuPPR4Rrxz3az741kL/M3oGIET4a9GajSNRNRx+jIva73TYUKQybrEPkDYN+fQ==}
|
|
engines: {node: '>=20.19.0'}
|
|
hasBin: true
|
|
peerDependencies:
|
|
'@arethetypeswrong/core': ^0.18.1
|
|
'@tsdown/css': 0.21.5
|
|
'@tsdown/exe': 0.21.5
|
|
'@vitejs/devtools': '*'
|
|
publint: ^0.3.0
|
|
typescript: ^5.0.0 || ^6.0.0
|
|
unplugin-unused: ^0.5.0
|
|
peerDependenciesMeta:
|
|
'@arethetypeswrong/core':
|
|
optional: true
|
|
'@tsdown/css':
|
|
optional: true
|
|
'@tsdown/exe':
|
|
optional: true
|
|
'@vitejs/devtools':
|
|
optional: true
|
|
publint:
|
|
optional: true
|
|
typescript:
|
|
optional: true
|
|
unplugin-unused:
|
|
optional: true
|
|
|
|
tslib@2.8.1:
|
|
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
|
|
turbo-darwin-64@2.8.17:
|
|
resolution: {integrity: sha512-ZFkv2hv7zHpAPEXBF6ouRRXshllOavYc+jjcrYyVHvxVTTwJWsBZwJ/gpPzmOKGvkSjsEyDO5V6aqqtZzwVF+Q==}
|
|
cpu: [x64]
|
|
os: [darwin]
|
|
|
|
turbo-darwin-arm64@2.8.17:
|
|
resolution: {integrity: sha512-5DXqhQUt24ycEryXDfMNKEkW5TBHs+QmU23a2qxXwwFDaJsWcPo2obEhBxxdEPOv7qmotjad+09RGeWCcJ9JDw==}
|
|
cpu: [arm64]
|
|
os: [darwin]
|
|
|
|
turbo-linux-64@2.8.17:
|
|
resolution: {integrity: sha512-KLUbz6w7F73D/Ihh51hVagrKR0/CTsPEbRkvXLXvoND014XJ4BCrQUqSxlQ4/hu+nqp1v5WlM85/h3ldeyujuA==}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
|
|
turbo-linux-arm64@2.8.17:
|
|
resolution: {integrity: sha512-pJK67XcNJH40lTAjFu7s/rUlobgVXyB3A3lDoq+/JccB3hf+SysmkpR4Itlc93s8LEaFAI4mamhFuTV17Z6wOg==}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
|
|
turbo-windows-64@2.8.17:
|
|
resolution: {integrity: sha512-EijeQ6zszDMmGZLP2vT2RXTs/GVi9rM0zv2/G4rNu2SSRSGFapgZdxgW4b5zUYLVaSkzmkpWlGfPfj76SW9yUg==}
|
|
cpu: [x64]
|
|
os: [win32]
|
|
|
|
turbo-windows-arm64@2.8.17:
|
|
resolution: {integrity: sha512-crpfeMPkfECd4V1PQ/hMoiyVcOy04+bWedu/if89S15WhOalHZ2BYUi6DOJhZrszY+mTT99OwpOsj4wNfb/GHQ==}
|
|
cpu: [arm64]
|
|
os: [win32]
|
|
|
|
turbo@2.8.17:
|
|
resolution: {integrity: sha512-YwPsNSqU2f/RXU/+Kcb7cPkPZARxom4+me7LKEdN5jsvy2tpfze3zDZ4EiGrJnvOm9Avu9rK0aaYsP7qZ3iz7A==}
|
|
hasBin: true
|
|
|
|
typescript@5.9.3:
|
|
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
|
engines: {node: '>=14.17'}
|
|
hasBin: true
|
|
|
|
unconfig-core@7.5.0:
|
|
resolution: {integrity: sha512-Su3FauozOGP44ZmKdHy2oE6LPjk51M/TRRjHv2HNCWiDvfvCoxC2lno6jevMA91MYAdCdwP05QnWdWpSbncX/w==}
|
|
|
|
undici-types@7.18.2:
|
|
resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
|
|
|
|
unionfs@4.6.0:
|
|
resolution: {integrity: sha512-fJAy3gTHjFi5S3TP5EGdjs/OUMFFvI/ady3T8qVuZfkv8Qi8prV/Q8BuFEgODJslhZTT2z2qdD2lGdee9qjEnA==}
|
|
|
|
unrun@0.2.33:
|
|
resolution: {integrity: sha512-urXTjZHOHS6lMnatQerLcBpcTsaKZYGuu9aSZ+HlNfCApkiINRbj7YecC9h9hdZroMT4WQ4KVyzHfBqHKuFX9Q==}
|
|
engines: {node: '>=20.19.0'}
|
|
hasBin: true
|
|
peerDependencies:
|
|
synckit: ^0.11.11
|
|
peerDependenciesMeta:
|
|
synckit:
|
|
optional: true
|
|
|
|
update-browserslist-db@1.2.3:
|
|
resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
|
|
hasBin: true
|
|
peerDependencies:
|
|
browserslist: '>= 4.21.0'
|
|
|
|
uuid@11.1.0:
|
|
resolution: {integrity: sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==}
|
|
hasBin: true
|
|
|
|
watchpack@2.5.1:
|
|
resolution: {integrity: sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg==}
|
|
engines: {node: '>=10.13.0'}
|
|
|
|
webpack-sources@3.3.4:
|
|
resolution: {integrity: sha512-7tP1PdV4vF+lYPnkMR0jMY5/la2ub5Fc/8VQrrU+lXkiM6C4TjVfGw7iKfyhnTQOsD+6Q/iKw0eFciziRgD58Q==}
|
|
engines: {node: '>=10.13.0'}
|
|
|
|
webpack@5.105.4:
|
|
resolution: {integrity: sha512-jTywjboN9aHxFlToqb0K0Zs9SbBoW4zRUlGzI2tYNxVYcEi/IPpn+Xi4ye5jTLvX2YeLuic/IvxNot+Q1jMoOw==}
|
|
engines: {node: '>=10.13.0'}
|
|
hasBin: true
|
|
peerDependencies:
|
|
webpack-cli: '*'
|
|
peerDependenciesMeta:
|
|
webpack-cli:
|
|
optional: true
|
|
|
|
wrap-ansi@7.0.0:
|
|
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
|
|
engines: {node: '>=10'}
|
|
|
|
y18n@5.0.8:
|
|
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
|
|
engines: {node: '>=10'}
|
|
|
|
yargs-parser@21.1.1:
|
|
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
|
|
engines: {node: '>=12'}
|
|
|
|
yargs@17.7.2:
|
|
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
|
|
engines: {node: '>=12'}
|
|
|
|
zod@4.3.6:
|
|
resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==}
|
|
|
|
zx@8.8.5:
|
|
resolution: {integrity: sha512-SNgDF5L0gfN7FwVOdEFguY3orU5AkfFZm9B5YSHog/UDHv+lvmd82ZAsOenOkQixigwH2+yyH198AwNdKhj+RA==}
|
|
engines: {node: '>= 12.17.0'}
|
|
hasBin: true
|
|
|
|
snapshots:
|
|
|
|
'@anthropic-ai/claude-agent-sdk@0.2.76(zod@4.3.6)':
|
|
dependencies:
|
|
zod: 4.3.6
|
|
optionalDependencies:
|
|
'@img/sharp-darwin-arm64': 0.34.5
|
|
'@img/sharp-darwin-x64': 0.34.5
|
|
'@img/sharp-linux-arm': 0.34.5
|
|
'@img/sharp-linux-arm64': 0.34.5
|
|
'@img/sharp-linux-x64': 0.34.5
|
|
'@img/sharp-linuxmusl-arm64': 0.34.5
|
|
'@img/sharp-linuxmusl-x64': 0.34.5
|
|
'@img/sharp-win32-arm64': 0.34.5
|
|
'@img/sharp-win32-x64': 0.34.5
|
|
|
|
'@babel/generator@8.0.0-rc.2':
|
|
dependencies:
|
|
'@babel/parser': 8.0.0-rc.2
|
|
'@babel/types': 8.0.0-rc.2
|
|
'@jridgewell/gen-mapping': 0.3.13
|
|
'@jridgewell/trace-mapping': 0.3.31
|
|
'@types/jsesc': 2.5.1
|
|
jsesc: 3.1.0
|
|
|
|
'@babel/helper-string-parser@8.0.0-rc.2': {}
|
|
|
|
'@babel/helper-validator-identifier@8.0.0-rc.2': {}
|
|
|
|
'@babel/parser@8.0.0-rc.2':
|
|
dependencies:
|
|
'@babel/types': 8.0.0-rc.2
|
|
|
|
'@babel/types@8.0.0-rc.2':
|
|
dependencies:
|
|
'@babel/helper-string-parser': 8.0.0-rc.2
|
|
'@babel/helper-validator-identifier': 8.0.0-rc.2
|
|
|
|
'@biomejs/biome@2.4.7':
|
|
optionalDependencies:
|
|
'@biomejs/cli-darwin-arm64': 2.4.7
|
|
'@biomejs/cli-darwin-x64': 2.4.7
|
|
'@biomejs/cli-linux-arm64': 2.4.7
|
|
'@biomejs/cli-linux-arm64-musl': 2.4.7
|
|
'@biomejs/cli-linux-x64': 2.4.7
|
|
'@biomejs/cli-linux-x64-musl': 2.4.7
|
|
'@biomejs/cli-win32-arm64': 2.4.7
|
|
'@biomejs/cli-win32-x64': 2.4.7
|
|
|
|
'@biomejs/cli-darwin-arm64@2.4.7':
|
|
optional: true
|
|
|
|
'@biomejs/cli-darwin-x64@2.4.7':
|
|
optional: true
|
|
|
|
'@biomejs/cli-linux-arm64-musl@2.4.7':
|
|
optional: true
|
|
|
|
'@biomejs/cli-linux-arm64@2.4.7':
|
|
optional: true
|
|
|
|
'@biomejs/cli-linux-x64-musl@2.4.7':
|
|
optional: true
|
|
|
|
'@biomejs/cli-linux-x64@2.4.7':
|
|
optional: true
|
|
|
|
'@biomejs/cli-win32-arm64@2.4.7':
|
|
optional: true
|
|
|
|
'@biomejs/cli-win32-x64@2.4.7':
|
|
optional: true
|
|
|
|
'@clack/core@1.1.0':
|
|
dependencies:
|
|
sisteransi: 1.0.5
|
|
|
|
'@clack/prompts@1.1.0':
|
|
dependencies:
|
|
'@clack/core': 1.1.0
|
|
sisteransi: 1.0.5
|
|
|
|
'@emnapi/core@1.9.1':
|
|
dependencies:
|
|
'@emnapi/wasi-threads': 1.2.0
|
|
tslib: 2.8.1
|
|
optional: true
|
|
|
|
'@emnapi/runtime@1.9.1':
|
|
dependencies:
|
|
tslib: 2.8.1
|
|
optional: true
|
|
|
|
'@emnapi/wasi-threads@1.2.0':
|
|
dependencies:
|
|
tslib: 2.8.1
|
|
optional: true
|
|
|
|
'@grpc/grpc-js@1.14.3':
|
|
dependencies:
|
|
'@grpc/proto-loader': 0.8.0
|
|
'@js-sdsl/ordered-map': 4.4.2
|
|
|
|
'@grpc/proto-loader@0.8.0':
|
|
dependencies:
|
|
lodash.camelcase: 4.3.0
|
|
long: 5.3.2
|
|
protobufjs: 7.5.4
|
|
yargs: 17.7.2
|
|
|
|
'@img/sharp-darwin-arm64@0.34.5':
|
|
optionalDependencies:
|
|
'@img/sharp-libvips-darwin-arm64': 1.2.4
|
|
optional: true
|
|
|
|
'@img/sharp-darwin-x64@0.34.5':
|
|
optionalDependencies:
|
|
'@img/sharp-libvips-darwin-x64': 1.2.4
|
|
optional: true
|
|
|
|
'@img/sharp-libvips-darwin-arm64@1.2.4':
|
|
optional: true
|
|
|
|
'@img/sharp-libvips-darwin-x64@1.2.4':
|
|
optional: true
|
|
|
|
'@img/sharp-libvips-linux-arm64@1.2.4':
|
|
optional: true
|
|
|
|
'@img/sharp-libvips-linux-arm@1.2.4':
|
|
optional: true
|
|
|
|
'@img/sharp-libvips-linux-x64@1.2.4':
|
|
optional: true
|
|
|
|
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
|
|
optional: true
|
|
|
|
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
|
|
optional: true
|
|
|
|
'@img/sharp-linux-arm64@0.34.5':
|
|
optionalDependencies:
|
|
'@img/sharp-libvips-linux-arm64': 1.2.4
|
|
optional: true
|
|
|
|
'@img/sharp-linux-arm@0.34.5':
|
|
optionalDependencies:
|
|
'@img/sharp-libvips-linux-arm': 1.2.4
|
|
optional: true
|
|
|
|
'@img/sharp-linux-x64@0.34.5':
|
|
optionalDependencies:
|
|
'@img/sharp-libvips-linux-x64': 1.2.4
|
|
optional: true
|
|
|
|
'@img/sharp-linuxmusl-arm64@0.34.5':
|
|
optionalDependencies:
|
|
'@img/sharp-libvips-linuxmusl-arm64': 1.2.4
|
|
optional: true
|
|
|
|
'@img/sharp-linuxmusl-x64@0.34.5':
|
|
optionalDependencies:
|
|
'@img/sharp-libvips-linuxmusl-x64': 1.2.4
|
|
optional: true
|
|
|
|
'@img/sharp-win32-arm64@0.34.5':
|
|
optional: true
|
|
|
|
'@img/sharp-win32-x64@0.34.5':
|
|
optional: true
|
|
|
|
'@jridgewell/gen-mapping@0.3.13':
|
|
dependencies:
|
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
'@jridgewell/trace-mapping': 0.3.31
|
|
|
|
'@jridgewell/resolve-uri@3.1.2': {}
|
|
|
|
'@jridgewell/source-map@0.3.11':
|
|
dependencies:
|
|
'@jridgewell/gen-mapping': 0.3.13
|
|
'@jridgewell/trace-mapping': 0.3.31
|
|
|
|
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
|
|
'@jridgewell/trace-mapping@0.3.31':
|
|
dependencies:
|
|
'@jridgewell/resolve-uri': 3.1.2
|
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
|
|
'@js-sdsl/ordered-map@4.4.2': {}
|
|
|
|
'@jsonjoy.com/base64@1.1.2(tslib@2.8.1)':
|
|
dependencies:
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/base64@17.67.0(tslib@2.8.1)':
|
|
dependencies:
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/buffers@1.2.1(tslib@2.8.1)':
|
|
dependencies:
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/buffers@17.67.0(tslib@2.8.1)':
|
|
dependencies:
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/codegen@1.0.0(tslib@2.8.1)':
|
|
dependencies:
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/codegen@17.67.0(tslib@2.8.1)':
|
|
dependencies:
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/fs-core@4.56.11(tslib@2.8.1)':
|
|
dependencies:
|
|
'@jsonjoy.com/fs-node-builtins': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-node-utils': 4.56.11(tslib@2.8.1)
|
|
thingies: 2.5.0(tslib@2.8.1)
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/fs-fsa@4.56.11(tslib@2.8.1)':
|
|
dependencies:
|
|
'@jsonjoy.com/fs-core': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-node-builtins': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-node-utils': 4.56.11(tslib@2.8.1)
|
|
thingies: 2.5.0(tslib@2.8.1)
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/fs-node-builtins@4.56.11(tslib@2.8.1)':
|
|
dependencies:
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/fs-node-to-fsa@4.56.11(tslib@2.8.1)':
|
|
dependencies:
|
|
'@jsonjoy.com/fs-fsa': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-node-builtins': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-node-utils': 4.56.11(tslib@2.8.1)
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/fs-node-utils@4.56.11(tslib@2.8.1)':
|
|
dependencies:
|
|
'@jsonjoy.com/fs-node-builtins': 4.56.11(tslib@2.8.1)
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/fs-node@4.56.11(tslib@2.8.1)':
|
|
dependencies:
|
|
'@jsonjoy.com/fs-core': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-node-builtins': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-node-utils': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-print': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-snapshot': 4.56.11(tslib@2.8.1)
|
|
glob-to-regex.js: 1.2.0(tslib@2.8.1)
|
|
thingies: 2.5.0(tslib@2.8.1)
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/fs-print@4.56.11(tslib@2.8.1)':
|
|
dependencies:
|
|
'@jsonjoy.com/fs-node-utils': 4.56.11(tslib@2.8.1)
|
|
tree-dump: 1.1.0(tslib@2.8.1)
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/fs-snapshot@4.56.11(tslib@2.8.1)':
|
|
dependencies:
|
|
'@jsonjoy.com/buffers': 17.67.0(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-node-utils': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/json-pack': 17.67.0(tslib@2.8.1)
|
|
'@jsonjoy.com/util': 17.67.0(tslib@2.8.1)
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/json-pack@1.21.0(tslib@2.8.1)':
|
|
dependencies:
|
|
'@jsonjoy.com/base64': 1.1.2(tslib@2.8.1)
|
|
'@jsonjoy.com/buffers': 1.2.1(tslib@2.8.1)
|
|
'@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1)
|
|
'@jsonjoy.com/json-pointer': 1.0.2(tslib@2.8.1)
|
|
'@jsonjoy.com/util': 1.9.0(tslib@2.8.1)
|
|
hyperdyperid: 1.2.0
|
|
thingies: 2.5.0(tslib@2.8.1)
|
|
tree-dump: 1.1.0(tslib@2.8.1)
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/json-pack@17.67.0(tslib@2.8.1)':
|
|
dependencies:
|
|
'@jsonjoy.com/base64': 17.67.0(tslib@2.8.1)
|
|
'@jsonjoy.com/buffers': 17.67.0(tslib@2.8.1)
|
|
'@jsonjoy.com/codegen': 17.67.0(tslib@2.8.1)
|
|
'@jsonjoy.com/json-pointer': 17.67.0(tslib@2.8.1)
|
|
'@jsonjoy.com/util': 17.67.0(tslib@2.8.1)
|
|
hyperdyperid: 1.2.0
|
|
thingies: 2.5.0(tslib@2.8.1)
|
|
tree-dump: 1.1.0(tslib@2.8.1)
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/json-pointer@1.0.2(tslib@2.8.1)':
|
|
dependencies:
|
|
'@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1)
|
|
'@jsonjoy.com/util': 1.9.0(tslib@2.8.1)
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/json-pointer@17.67.0(tslib@2.8.1)':
|
|
dependencies:
|
|
'@jsonjoy.com/util': 17.67.0(tslib@2.8.1)
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/util@1.9.0(tslib@2.8.1)':
|
|
dependencies:
|
|
'@jsonjoy.com/buffers': 1.2.1(tslib@2.8.1)
|
|
'@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1)
|
|
tslib: 2.8.1
|
|
|
|
'@jsonjoy.com/util@17.67.0(tslib@2.8.1)':
|
|
dependencies:
|
|
'@jsonjoy.com/buffers': 17.67.0(tslib@2.8.1)
|
|
'@jsonjoy.com/codegen': 17.67.0(tslib@2.8.1)
|
|
tslib: 2.8.1
|
|
|
|
'@napi-rs/wasm-runtime@1.1.1':
|
|
dependencies:
|
|
'@emnapi/core': 1.9.1
|
|
'@emnapi/runtime': 1.9.1
|
|
'@tybys/wasm-util': 0.10.1
|
|
optional: true
|
|
|
|
'@oxc-project/types@0.122.0': {}
|
|
|
|
'@protobufjs/aspromise@1.1.2': {}
|
|
|
|
'@protobufjs/base64@1.1.2': {}
|
|
|
|
'@protobufjs/codegen@2.0.4': {}
|
|
|
|
'@protobufjs/eventemitter@1.1.0': {}
|
|
|
|
'@protobufjs/fetch@1.1.0':
|
|
dependencies:
|
|
'@protobufjs/aspromise': 1.1.2
|
|
'@protobufjs/inquire': 1.1.0
|
|
|
|
'@protobufjs/float@1.0.2': {}
|
|
|
|
'@protobufjs/inquire@1.1.0': {}
|
|
|
|
'@protobufjs/path@1.1.2': {}
|
|
|
|
'@protobufjs/pool@1.1.0': {}
|
|
|
|
'@protobufjs/utf8@1.1.0': {}
|
|
|
|
'@quansync/fs@1.0.0':
|
|
dependencies:
|
|
quansync: 1.0.0
|
|
|
|
'@rolldown/binding-android-arm64@1.0.0-rc.11':
|
|
optional: true
|
|
|
|
'@rolldown/binding-darwin-arm64@1.0.0-rc.11':
|
|
optional: true
|
|
|
|
'@rolldown/binding-darwin-x64@1.0.0-rc.11':
|
|
optional: true
|
|
|
|
'@rolldown/binding-freebsd-x64@1.0.0-rc.11':
|
|
optional: true
|
|
|
|
'@rolldown/binding-linux-arm-gnueabihf@1.0.0-rc.11':
|
|
optional: true
|
|
|
|
'@rolldown/binding-linux-arm64-gnu@1.0.0-rc.11':
|
|
optional: true
|
|
|
|
'@rolldown/binding-linux-arm64-musl@1.0.0-rc.11':
|
|
optional: true
|
|
|
|
'@rolldown/binding-linux-ppc64-gnu@1.0.0-rc.11':
|
|
optional: true
|
|
|
|
'@rolldown/binding-linux-s390x-gnu@1.0.0-rc.11':
|
|
optional: true
|
|
|
|
'@rolldown/binding-linux-x64-gnu@1.0.0-rc.11':
|
|
optional: true
|
|
|
|
'@rolldown/binding-linux-x64-musl@1.0.0-rc.11':
|
|
optional: true
|
|
|
|
'@rolldown/binding-openharmony-arm64@1.0.0-rc.11':
|
|
optional: true
|
|
|
|
'@rolldown/binding-wasm32-wasi@1.0.0-rc.11':
|
|
dependencies:
|
|
'@napi-rs/wasm-runtime': 1.1.1
|
|
optional: true
|
|
|
|
'@rolldown/binding-win32-arm64-msvc@1.0.0-rc.11':
|
|
optional: true
|
|
|
|
'@rolldown/binding-win32-x64-msvc@1.0.0-rc.11':
|
|
optional: true
|
|
|
|
'@rolldown/pluginutils@1.0.0-rc.11': {}
|
|
|
|
'@swc/core-darwin-arm64@1.15.18':
|
|
optional: true
|
|
|
|
'@swc/core-darwin-x64@1.15.18':
|
|
optional: true
|
|
|
|
'@swc/core-linux-arm-gnueabihf@1.15.18':
|
|
optional: true
|
|
|
|
'@swc/core-linux-arm64-gnu@1.15.18':
|
|
optional: true
|
|
|
|
'@swc/core-linux-arm64-musl@1.15.18':
|
|
optional: true
|
|
|
|
'@swc/core-linux-x64-gnu@1.15.18':
|
|
optional: true
|
|
|
|
'@swc/core-linux-x64-musl@1.15.18':
|
|
optional: true
|
|
|
|
'@swc/core-win32-arm64-msvc@1.15.18':
|
|
optional: true
|
|
|
|
'@swc/core-win32-ia32-msvc@1.15.18':
|
|
optional: true
|
|
|
|
'@swc/core-win32-x64-msvc@1.15.18':
|
|
optional: true
|
|
|
|
'@swc/core@1.15.18':
|
|
dependencies:
|
|
'@swc/counter': 0.1.3
|
|
'@swc/types': 0.1.25
|
|
optionalDependencies:
|
|
'@swc/core-darwin-arm64': 1.15.18
|
|
'@swc/core-darwin-x64': 1.15.18
|
|
'@swc/core-linux-arm-gnueabihf': 1.15.18
|
|
'@swc/core-linux-arm64-gnu': 1.15.18
|
|
'@swc/core-linux-arm64-musl': 1.15.18
|
|
'@swc/core-linux-x64-gnu': 1.15.18
|
|
'@swc/core-linux-x64-musl': 1.15.18
|
|
'@swc/core-win32-arm64-msvc': 1.15.18
|
|
'@swc/core-win32-ia32-msvc': 1.15.18
|
|
'@swc/core-win32-x64-msvc': 1.15.18
|
|
|
|
'@swc/counter@0.1.3': {}
|
|
|
|
'@swc/types@0.1.25':
|
|
dependencies:
|
|
'@swc/counter': 0.1.3
|
|
|
|
'@temporalio/activity@1.15.0':
|
|
dependencies:
|
|
'@temporalio/client': 1.15.0
|
|
'@temporalio/common': 1.15.0
|
|
abort-controller: 3.0.0
|
|
|
|
'@temporalio/client@1.15.0':
|
|
dependencies:
|
|
'@grpc/grpc-js': 1.14.3
|
|
'@temporalio/common': 1.15.0
|
|
'@temporalio/proto': 1.15.0
|
|
abort-controller: 3.0.0
|
|
long: 5.3.2
|
|
uuid: 11.1.0
|
|
|
|
'@temporalio/common@1.15.0':
|
|
dependencies:
|
|
'@temporalio/proto': 1.15.0
|
|
long: 5.3.2
|
|
ms: 3.0.0-canary.1
|
|
nexus-rpc: 0.0.1
|
|
proto3-json-serializer: 2.0.2
|
|
|
|
'@temporalio/core-bridge@1.15.0':
|
|
dependencies:
|
|
'@grpc/grpc-js': 1.14.3
|
|
'@temporalio/common': 1.15.0
|
|
|
|
'@temporalio/nexus@1.15.0':
|
|
dependencies:
|
|
'@temporalio/client': 1.15.0
|
|
'@temporalio/common': 1.15.0
|
|
'@temporalio/proto': 1.15.0
|
|
long: 5.3.2
|
|
nexus-rpc: 0.0.1
|
|
|
|
'@temporalio/proto@1.15.0':
|
|
dependencies:
|
|
long: 5.3.2
|
|
protobufjs: 7.5.4
|
|
|
|
'@temporalio/worker@1.15.0(tslib@2.8.1)':
|
|
dependencies:
|
|
'@grpc/grpc-js': 1.14.3
|
|
'@swc/core': 1.15.18
|
|
'@temporalio/activity': 1.15.0
|
|
'@temporalio/client': 1.15.0
|
|
'@temporalio/common': 1.15.0
|
|
'@temporalio/core-bridge': 1.15.0
|
|
'@temporalio/nexus': 1.15.0
|
|
'@temporalio/proto': 1.15.0
|
|
'@temporalio/workflow': 1.15.0
|
|
abort-controller: 3.0.0
|
|
heap-js: 2.7.1
|
|
memfs: 4.56.11(tslib@2.8.1)
|
|
nexus-rpc: 0.0.1
|
|
proto3-json-serializer: 2.0.2
|
|
protobufjs: 7.5.4
|
|
rxjs: 7.8.2
|
|
source-map: 0.7.6
|
|
source-map-loader: 4.0.2(webpack@5.105.4(@swc/core@1.15.18))
|
|
supports-color: 8.1.1
|
|
swc-loader: 0.2.7(@swc/core@1.15.18)(webpack@5.105.4(@swc/core@1.15.18))
|
|
unionfs: 4.6.0
|
|
webpack: 5.105.4(@swc/core@1.15.18)
|
|
transitivePeerDependencies:
|
|
- '@swc/helpers'
|
|
- esbuild
|
|
- tslib
|
|
- uglify-js
|
|
- webpack-cli
|
|
|
|
'@temporalio/workflow@1.15.0':
|
|
dependencies:
|
|
'@temporalio/common': 1.15.0
|
|
'@temporalio/proto': 1.15.0
|
|
nexus-rpc: 0.0.1
|
|
|
|
'@tybys/wasm-util@0.10.1':
|
|
dependencies:
|
|
tslib: 2.8.1
|
|
optional: true
|
|
|
|
'@types/eslint-scope@3.7.7':
|
|
dependencies:
|
|
'@types/eslint': 9.6.1
|
|
'@types/estree': 1.0.8
|
|
|
|
'@types/eslint@9.6.1':
|
|
dependencies:
|
|
'@types/estree': 1.0.8
|
|
'@types/json-schema': 7.0.15
|
|
|
|
'@types/estree@1.0.8': {}
|
|
|
|
'@types/js-yaml@4.0.9': {}
|
|
|
|
'@types/jsesc@2.5.1': {}
|
|
|
|
'@types/json-schema@7.0.15': {}
|
|
|
|
'@types/node@25.5.0':
|
|
dependencies:
|
|
undici-types: 7.18.2
|
|
|
|
'@webassemblyjs/ast@1.14.1':
|
|
dependencies:
|
|
'@webassemblyjs/helper-numbers': 1.13.2
|
|
'@webassemblyjs/helper-wasm-bytecode': 1.13.2
|
|
|
|
'@webassemblyjs/floating-point-hex-parser@1.13.2': {}
|
|
|
|
'@webassemblyjs/helper-api-error@1.13.2': {}
|
|
|
|
'@webassemblyjs/helper-buffer@1.14.1': {}
|
|
|
|
'@webassemblyjs/helper-numbers@1.13.2':
|
|
dependencies:
|
|
'@webassemblyjs/floating-point-hex-parser': 1.13.2
|
|
'@webassemblyjs/helper-api-error': 1.13.2
|
|
'@xtuc/long': 4.2.2
|
|
|
|
'@webassemblyjs/helper-wasm-bytecode@1.13.2': {}
|
|
|
|
'@webassemblyjs/helper-wasm-section@1.14.1':
|
|
dependencies:
|
|
'@webassemblyjs/ast': 1.14.1
|
|
'@webassemblyjs/helper-buffer': 1.14.1
|
|
'@webassemblyjs/helper-wasm-bytecode': 1.13.2
|
|
'@webassemblyjs/wasm-gen': 1.14.1
|
|
|
|
'@webassemblyjs/ieee754@1.13.2':
|
|
dependencies:
|
|
'@xtuc/ieee754': 1.2.0
|
|
|
|
'@webassemblyjs/leb128@1.13.2':
|
|
dependencies:
|
|
'@xtuc/long': 4.2.2
|
|
|
|
'@webassemblyjs/utf8@1.13.2': {}
|
|
|
|
'@webassemblyjs/wasm-edit@1.14.1':
|
|
dependencies:
|
|
'@webassemblyjs/ast': 1.14.1
|
|
'@webassemblyjs/helper-buffer': 1.14.1
|
|
'@webassemblyjs/helper-wasm-bytecode': 1.13.2
|
|
'@webassemblyjs/helper-wasm-section': 1.14.1
|
|
'@webassemblyjs/wasm-gen': 1.14.1
|
|
'@webassemblyjs/wasm-opt': 1.14.1
|
|
'@webassemblyjs/wasm-parser': 1.14.1
|
|
'@webassemblyjs/wast-printer': 1.14.1
|
|
|
|
'@webassemblyjs/wasm-gen@1.14.1':
|
|
dependencies:
|
|
'@webassemblyjs/ast': 1.14.1
|
|
'@webassemblyjs/helper-wasm-bytecode': 1.13.2
|
|
'@webassemblyjs/ieee754': 1.13.2
|
|
'@webassemblyjs/leb128': 1.13.2
|
|
'@webassemblyjs/utf8': 1.13.2
|
|
|
|
'@webassemblyjs/wasm-opt@1.14.1':
|
|
dependencies:
|
|
'@webassemblyjs/ast': 1.14.1
|
|
'@webassemblyjs/helper-buffer': 1.14.1
|
|
'@webassemblyjs/wasm-gen': 1.14.1
|
|
'@webassemblyjs/wasm-parser': 1.14.1
|
|
|
|
'@webassemblyjs/wasm-parser@1.14.1':
|
|
dependencies:
|
|
'@webassemblyjs/ast': 1.14.1
|
|
'@webassemblyjs/helper-api-error': 1.13.2
|
|
'@webassemblyjs/helper-wasm-bytecode': 1.13.2
|
|
'@webassemblyjs/ieee754': 1.13.2
|
|
'@webassemblyjs/leb128': 1.13.2
|
|
'@webassemblyjs/utf8': 1.13.2
|
|
|
|
'@webassemblyjs/wast-printer@1.14.1':
|
|
dependencies:
|
|
'@webassemblyjs/ast': 1.14.1
|
|
'@xtuc/long': 4.2.2
|
|
|
|
'@xtuc/ieee754@1.2.0': {}
|
|
|
|
'@xtuc/long@4.2.2': {}
|
|
|
|
abort-controller@3.0.0:
|
|
dependencies:
|
|
event-target-shim: 5.0.1
|
|
|
|
acorn-import-phases@1.0.4(acorn@8.16.0):
|
|
dependencies:
|
|
acorn: 8.16.0
|
|
|
|
acorn@8.16.0: {}
|
|
|
|
ajv-formats@2.1.1(ajv@8.18.0):
|
|
optionalDependencies:
|
|
ajv: 8.18.0
|
|
|
|
ajv-keywords@5.1.0(ajv@8.18.0):
|
|
dependencies:
|
|
ajv: 8.18.0
|
|
fast-deep-equal: 3.1.3
|
|
|
|
ajv@8.18.0:
|
|
dependencies:
|
|
fast-deep-equal: 3.1.3
|
|
fast-uri: 3.1.0
|
|
json-schema-traverse: 1.0.0
|
|
require-from-string: 2.0.2
|
|
|
|
ansi-regex@5.0.1: {}
|
|
|
|
ansi-styles@4.3.0:
|
|
dependencies:
|
|
color-convert: 2.0.1
|
|
|
|
ansis@4.2.0: {}
|
|
|
|
argparse@2.0.1: {}
|
|
|
|
ast-kit@3.0.0-beta.1:
|
|
dependencies:
|
|
'@babel/parser': 8.0.0-rc.2
|
|
estree-walker: 3.0.3
|
|
pathe: 2.0.3
|
|
|
|
baseline-browser-mapping@2.10.8: {}
|
|
|
|
birpc@4.0.0: {}
|
|
|
|
browserslist@4.28.1:
|
|
dependencies:
|
|
baseline-browser-mapping: 2.10.8
|
|
caniuse-lite: 1.0.30001778
|
|
electron-to-chromium: 1.5.313
|
|
node-releases: 2.0.36
|
|
update-browserslist-db: 1.2.3(browserslist@4.28.1)
|
|
|
|
buffer-from@1.1.2: {}
|
|
|
|
cac@7.0.0: {}
|
|
|
|
caniuse-lite@1.0.30001778: {}
|
|
|
|
chokidar@5.0.0:
|
|
dependencies:
|
|
readdirp: 5.0.0
|
|
|
|
chrome-trace-event@1.0.4: {}
|
|
|
|
cliui@8.0.1:
|
|
dependencies:
|
|
string-width: 4.2.3
|
|
strip-ansi: 6.0.1
|
|
wrap-ansi: 7.0.0
|
|
|
|
color-convert@2.0.1:
|
|
dependencies:
|
|
color-name: 1.1.4
|
|
|
|
color-name@1.1.4: {}
|
|
|
|
commander@2.20.3: {}
|
|
|
|
defu@6.1.4: {}
|
|
|
|
dotenv@16.6.1: {}
|
|
|
|
dotenv@17.3.1: {}
|
|
|
|
dts-resolver@2.1.3: {}
|
|
|
|
electron-to-chromium@1.5.313: {}
|
|
|
|
emoji-regex@8.0.0: {}
|
|
|
|
empathic@2.0.0: {}
|
|
|
|
enhanced-resolve@5.20.0:
|
|
dependencies:
|
|
graceful-fs: 4.2.11
|
|
tapable: 2.3.0
|
|
|
|
es-module-lexer@2.0.0: {}
|
|
|
|
escalade@3.2.0: {}
|
|
|
|
eslint-scope@5.1.1:
|
|
dependencies:
|
|
esrecurse: 4.3.0
|
|
estraverse: 4.3.0
|
|
|
|
esrecurse@4.3.0:
|
|
dependencies:
|
|
estraverse: 5.3.0
|
|
|
|
estraverse@4.3.0: {}
|
|
|
|
estraverse@5.3.0: {}
|
|
|
|
estree-walker@3.0.3:
|
|
dependencies:
|
|
'@types/estree': 1.0.8
|
|
|
|
event-target-shim@5.0.1: {}
|
|
|
|
events@3.3.0: {}
|
|
|
|
fast-deep-equal@3.1.3: {}
|
|
|
|
fast-uri@3.1.0: {}
|
|
|
|
fdir@6.5.0(picomatch@4.0.4):
|
|
optionalDependencies:
|
|
picomatch: 4.0.4
|
|
|
|
fs-monkey@1.1.0: {}
|
|
|
|
get-caller-file@2.0.5: {}
|
|
|
|
get-tsconfig@4.13.6:
|
|
dependencies:
|
|
resolve-pkg-maps: 1.0.0
|
|
|
|
glob-to-regex.js@1.2.0(tslib@2.8.1):
|
|
dependencies:
|
|
tslib: 2.8.1
|
|
|
|
glob-to-regexp@0.4.1: {}
|
|
|
|
graceful-fs@4.2.11: {}
|
|
|
|
has-flag@4.0.0: {}
|
|
|
|
heap-js@2.7.1: {}
|
|
|
|
hookable@6.1.0: {}
|
|
|
|
hyperdyperid@1.2.0: {}
|
|
|
|
iconv-lite@0.6.3:
|
|
dependencies:
|
|
safer-buffer: 2.1.2
|
|
|
|
import-without-cache@0.2.5: {}
|
|
|
|
is-fullwidth-code-point@3.0.0: {}
|
|
|
|
jest-worker@27.5.1:
|
|
dependencies:
|
|
'@types/node': 25.5.0
|
|
merge-stream: 2.0.0
|
|
supports-color: 8.1.1
|
|
|
|
js-yaml@4.1.1:
|
|
dependencies:
|
|
argparse: 2.0.1
|
|
|
|
jsesc@3.1.0: {}
|
|
|
|
json-parse-even-better-errors@2.3.1: {}
|
|
|
|
json-schema-traverse@1.0.0: {}
|
|
|
|
loader-runner@4.3.1: {}
|
|
|
|
lodash.camelcase@4.3.0: {}
|
|
|
|
long@5.3.2: {}
|
|
|
|
memfs@4.56.11(tslib@2.8.1):
|
|
dependencies:
|
|
'@jsonjoy.com/fs-core': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-fsa': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-node': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-node-builtins': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-node-to-fsa': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-node-utils': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-print': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/fs-snapshot': 4.56.11(tslib@2.8.1)
|
|
'@jsonjoy.com/json-pack': 1.21.0(tslib@2.8.1)
|
|
'@jsonjoy.com/util': 1.9.0(tslib@2.8.1)
|
|
glob-to-regex.js: 1.2.0(tslib@2.8.1)
|
|
thingies: 2.5.0(tslib@2.8.1)
|
|
tree-dump: 1.1.0(tslib@2.8.1)
|
|
tslib: 2.8.1
|
|
|
|
merge-stream@2.0.0: {}
|
|
|
|
mime-db@1.52.0: {}
|
|
|
|
mime-types@2.1.35:
|
|
dependencies:
|
|
mime-db: 1.52.0
|
|
|
|
ms@3.0.0-canary.1: {}
|
|
|
|
neo-async@2.6.2: {}
|
|
|
|
nexus-rpc@0.0.1: {}
|
|
|
|
node-releases@2.0.36: {}
|
|
|
|
obug@2.1.1: {}
|
|
|
|
pathe@2.0.3: {}
|
|
|
|
picocolors@1.1.1: {}
|
|
|
|
picomatch@4.0.4: {}
|
|
|
|
proto3-json-serializer@2.0.2:
|
|
dependencies:
|
|
protobufjs: 7.5.4
|
|
|
|
protobufjs@7.5.4:
|
|
dependencies:
|
|
'@protobufjs/aspromise': 1.1.2
|
|
'@protobufjs/base64': 1.1.2
|
|
'@protobufjs/codegen': 2.0.4
|
|
'@protobufjs/eventemitter': 1.1.0
|
|
'@protobufjs/fetch': 1.1.0
|
|
'@protobufjs/float': 1.0.2
|
|
'@protobufjs/inquire': 1.1.0
|
|
'@protobufjs/path': 1.1.2
|
|
'@protobufjs/pool': 1.1.0
|
|
'@protobufjs/utf8': 1.1.0
|
|
'@types/node': 25.5.0
|
|
long: 5.3.2
|
|
|
|
quansync@1.0.0: {}
|
|
|
|
readdirp@5.0.0: {}
|
|
|
|
require-directory@2.1.1: {}
|
|
|
|
require-from-string@2.0.2: {}
|
|
|
|
resolve-pkg-maps@1.0.0: {}
|
|
|
|
rolldown-plugin-dts@0.22.5(rolldown@1.0.0-rc.11)(typescript@5.9.3):
|
|
dependencies:
|
|
'@babel/generator': 8.0.0-rc.2
|
|
'@babel/helper-validator-identifier': 8.0.0-rc.2
|
|
'@babel/parser': 8.0.0-rc.2
|
|
'@babel/types': 8.0.0-rc.2
|
|
ast-kit: 3.0.0-beta.1
|
|
birpc: 4.0.0
|
|
dts-resolver: 2.1.3
|
|
get-tsconfig: 4.13.6
|
|
obug: 2.1.1
|
|
rolldown: 1.0.0-rc.11
|
|
optionalDependencies:
|
|
typescript: 5.9.3
|
|
transitivePeerDependencies:
|
|
- oxc-resolver
|
|
|
|
rolldown@1.0.0-rc.11:
|
|
dependencies:
|
|
'@oxc-project/types': 0.122.0
|
|
'@rolldown/pluginutils': 1.0.0-rc.11
|
|
optionalDependencies:
|
|
'@rolldown/binding-android-arm64': 1.0.0-rc.11
|
|
'@rolldown/binding-darwin-arm64': 1.0.0-rc.11
|
|
'@rolldown/binding-darwin-x64': 1.0.0-rc.11
|
|
'@rolldown/binding-freebsd-x64': 1.0.0-rc.11
|
|
'@rolldown/binding-linux-arm-gnueabihf': 1.0.0-rc.11
|
|
'@rolldown/binding-linux-arm64-gnu': 1.0.0-rc.11
|
|
'@rolldown/binding-linux-arm64-musl': 1.0.0-rc.11
|
|
'@rolldown/binding-linux-ppc64-gnu': 1.0.0-rc.11
|
|
'@rolldown/binding-linux-s390x-gnu': 1.0.0-rc.11
|
|
'@rolldown/binding-linux-x64-gnu': 1.0.0-rc.11
|
|
'@rolldown/binding-linux-x64-musl': 1.0.0-rc.11
|
|
'@rolldown/binding-openharmony-arm64': 1.0.0-rc.11
|
|
'@rolldown/binding-wasm32-wasi': 1.0.0-rc.11
|
|
'@rolldown/binding-win32-arm64-msvc': 1.0.0-rc.11
|
|
'@rolldown/binding-win32-x64-msvc': 1.0.0-rc.11
|
|
|
|
rxjs@7.8.2:
|
|
dependencies:
|
|
tslib: 2.8.1
|
|
|
|
safer-buffer@2.1.2: {}
|
|
|
|
schema-utils@4.3.3:
|
|
dependencies:
|
|
'@types/json-schema': 7.0.15
|
|
ajv: 8.18.0
|
|
ajv-formats: 2.1.1(ajv@8.18.0)
|
|
ajv-keywords: 5.1.0(ajv@8.18.0)
|
|
|
|
semver@7.7.4: {}
|
|
|
|
sisteransi@1.0.5: {}
|
|
|
|
smol-toml@1.6.1: {}
|
|
|
|
source-map-js@1.2.1: {}
|
|
|
|
source-map-loader@4.0.2(webpack@5.105.4(@swc/core@1.15.18)):
|
|
dependencies:
|
|
iconv-lite: 0.6.3
|
|
source-map-js: 1.2.1
|
|
webpack: 5.105.4(@swc/core@1.15.18)
|
|
|
|
source-map-support@0.5.21:
|
|
dependencies:
|
|
buffer-from: 1.1.2
|
|
source-map: 0.6.1
|
|
|
|
source-map@0.6.1: {}
|
|
|
|
source-map@0.7.6: {}
|
|
|
|
string-width@4.2.3:
|
|
dependencies:
|
|
emoji-regex: 8.0.0
|
|
is-fullwidth-code-point: 3.0.0
|
|
strip-ansi: 6.0.1
|
|
|
|
strip-ansi@6.0.1:
|
|
dependencies:
|
|
ansi-regex: 5.0.1
|
|
|
|
supports-color@8.1.1:
|
|
dependencies:
|
|
has-flag: 4.0.0
|
|
|
|
swc-loader@0.2.7(@swc/core@1.15.18)(webpack@5.105.4(@swc/core@1.15.18)):
|
|
dependencies:
|
|
'@swc/core': 1.15.18
|
|
'@swc/counter': 0.1.3
|
|
webpack: 5.105.4(@swc/core@1.15.18)
|
|
|
|
tapable@2.3.0: {}
|
|
|
|
terser-webpack-plugin@5.4.0(@swc/core@1.15.18)(webpack@5.105.4(@swc/core@1.15.18)):
|
|
dependencies:
|
|
'@jridgewell/trace-mapping': 0.3.31
|
|
jest-worker: 27.5.1
|
|
schema-utils: 4.3.3
|
|
terser: 5.46.0
|
|
webpack: 5.105.4(@swc/core@1.15.18)
|
|
optionalDependencies:
|
|
'@swc/core': 1.15.18
|
|
|
|
terser@5.46.0:
|
|
dependencies:
|
|
'@jridgewell/source-map': 0.3.11
|
|
acorn: 8.16.0
|
|
commander: 2.20.3
|
|
source-map-support: 0.5.21
|
|
|
|
thingies@2.5.0(tslib@2.8.1):
|
|
dependencies:
|
|
tslib: 2.8.1
|
|
|
|
tinyexec@1.0.4: {}
|
|
|
|
tinyglobby@0.2.15:
|
|
dependencies:
|
|
fdir: 6.5.0(picomatch@4.0.4)
|
|
picomatch: 4.0.4
|
|
|
|
tree-dump@1.1.0(tslib@2.8.1):
|
|
dependencies:
|
|
tslib: 2.8.1
|
|
|
|
tree-kill@1.2.2: {}
|
|
|
|
tsdown@0.21.5(typescript@5.9.3):
|
|
dependencies:
|
|
ansis: 4.2.0
|
|
cac: 7.0.0
|
|
defu: 6.1.4
|
|
empathic: 2.0.0
|
|
hookable: 6.1.0
|
|
import-without-cache: 0.2.5
|
|
obug: 2.1.1
|
|
picomatch: 4.0.4
|
|
rolldown: 1.0.0-rc.11
|
|
rolldown-plugin-dts: 0.22.5(rolldown@1.0.0-rc.11)(typescript@5.9.3)
|
|
semver: 7.7.4
|
|
tinyexec: 1.0.4
|
|
tinyglobby: 0.2.15
|
|
tree-kill: 1.2.2
|
|
unconfig-core: 7.5.0
|
|
unrun: 0.2.33
|
|
optionalDependencies:
|
|
typescript: 5.9.3
|
|
transitivePeerDependencies:
|
|
- '@ts-macro/tsc'
|
|
- '@typescript/native-preview'
|
|
- oxc-resolver
|
|
- synckit
|
|
- vue-tsc
|
|
|
|
tslib@2.8.1: {}
|
|
|
|
turbo-darwin-64@2.8.17:
|
|
optional: true
|
|
|
|
turbo-darwin-arm64@2.8.17:
|
|
optional: true
|
|
|
|
turbo-linux-64@2.8.17:
|
|
optional: true
|
|
|
|
turbo-linux-arm64@2.8.17:
|
|
optional: true
|
|
|
|
turbo-windows-64@2.8.17:
|
|
optional: true
|
|
|
|
turbo-windows-arm64@2.8.17:
|
|
optional: true
|
|
|
|
turbo@2.8.17:
|
|
optionalDependencies:
|
|
turbo-darwin-64: 2.8.17
|
|
turbo-darwin-arm64: 2.8.17
|
|
turbo-linux-64: 2.8.17
|
|
turbo-linux-arm64: 2.8.17
|
|
turbo-windows-64: 2.8.17
|
|
turbo-windows-arm64: 2.8.17
|
|
|
|
typescript@5.9.3: {}
|
|
|
|
unconfig-core@7.5.0:
|
|
dependencies:
|
|
'@quansync/fs': 1.0.0
|
|
quansync: 1.0.0
|
|
|
|
undici-types@7.18.2: {}
|
|
|
|
unionfs@4.6.0:
|
|
dependencies:
|
|
fs-monkey: 1.1.0
|
|
|
|
unrun@0.2.33:
|
|
dependencies:
|
|
rolldown: 1.0.0-rc.11
|
|
|
|
update-browserslist-db@1.2.3(browserslist@4.28.1):
|
|
dependencies:
|
|
browserslist: 4.28.1
|
|
escalade: 3.2.0
|
|
picocolors: 1.1.1
|
|
|
|
uuid@11.1.0: {}
|
|
|
|
watchpack@2.5.1:
|
|
dependencies:
|
|
glob-to-regexp: 0.4.1
|
|
graceful-fs: 4.2.11
|
|
|
|
webpack-sources@3.3.4: {}
|
|
|
|
webpack@5.105.4(@swc/core@1.15.18):
|
|
dependencies:
|
|
'@types/eslint-scope': 3.7.7
|
|
'@types/estree': 1.0.8
|
|
'@types/json-schema': 7.0.15
|
|
'@webassemblyjs/ast': 1.14.1
|
|
'@webassemblyjs/wasm-edit': 1.14.1
|
|
'@webassemblyjs/wasm-parser': 1.14.1
|
|
acorn: 8.16.0
|
|
acorn-import-phases: 1.0.4(acorn@8.16.0)
|
|
browserslist: 4.28.1
|
|
chrome-trace-event: 1.0.4
|
|
enhanced-resolve: 5.20.0
|
|
es-module-lexer: 2.0.0
|
|
eslint-scope: 5.1.1
|
|
events: 3.3.0
|
|
glob-to-regexp: 0.4.1
|
|
graceful-fs: 4.2.11
|
|
json-parse-even-better-errors: 2.3.1
|
|
loader-runner: 4.3.1
|
|
mime-types: 2.1.35
|
|
neo-async: 2.6.2
|
|
schema-utils: 4.3.3
|
|
tapable: 2.3.0
|
|
terser-webpack-plugin: 5.4.0(@swc/core@1.15.18)(webpack@5.105.4(@swc/core@1.15.18))
|
|
watchpack: 2.5.1
|
|
webpack-sources: 3.3.4
|
|
transitivePeerDependencies:
|
|
- '@swc/core'
|
|
- esbuild
|
|
- uglify-js
|
|
|
|
wrap-ansi@7.0.0:
|
|
dependencies:
|
|
ansi-styles: 4.3.0
|
|
string-width: 4.2.3
|
|
strip-ansi: 6.0.1
|
|
|
|
y18n@5.0.8: {}
|
|
|
|
yargs-parser@21.1.1: {}
|
|
|
|
yargs@17.7.2:
|
|
dependencies:
|
|
cliui: 8.0.1
|
|
escalade: 3.2.0
|
|
get-caller-file: 2.0.5
|
|
require-directory: 2.1.1
|
|
string-width: 4.2.3
|
|
y18n: 5.0.8
|
|
yargs-parser: 21.1.1
|
|
|
|
zod@4.3.6: {}
|
|
|
|
zx@8.8.5: {}
|