diff --git a/.github/security/REFRESH.md b/.github/security/REFRESH.md new file mode 100644 index 0000000..4c6cddd --- /dev/null +++ b/.github/security/REFRESH.md @@ -0,0 +1,60 @@ +# IOC list refresh process + +These files (`.github/security/ioc-packages.txt`, `.github/security/ioc-hashes.txt`) +are consumed by the daily org-wide IOC sweep workflow (DEVOP-560). They must +stay current to be useful. + +## Cadence + +- **Weekly** (Mondays, before standup): refresh from Socket's free advisory + feed (https://socket.dev/threat-feed) filtered to `category:supply-chain` + and `tag:shai-hulud`. Cross-check against the GitHub Advisory Database + (`gh api graphql -F query=@advisories.graphql` — see runbook). +- **Ad hoc**: any time a new wave is disclosed publicly (Socket blog, + GitHub Security blog, CrowdStrike intel). Page the on-call security + engineer; do not batch. + +## How + +1. Open a branch in `allora-network/.github`: `security/ioc-refresh-YYYY-MM-DD`. +2. Diff the current `ioc-packages.txt` against the upstream feed; add new + `:@` lines. Do NOT remove old entries — the + sweep workflow must continue to flag them for any repo that still pins + a vulnerable version. +3. For `ioc-hashes.txt`, only add hashes confirmed by at least two + independent sources (Socket + GHSA, or Socket + StepSecurity, etc.). + Annotate each line with the advisory ID in a `# comment`. +4. PR title: `chore(security): refresh IOC lists YYYY-MM-DD`. +5. Tag `@allora-network/security-oncall` for review. Single approval is + sufficient; this is additive content, not policy. +6. After merge, manually trigger the sweep workflow once to confirm the + new IOCs are picked up: `gh workflow run shai-hulud-sweep.yml --repo + allora-network/.github`. + +## Refreshing the Datadog 2.0 snapshot + +The Shai-Hulud 2.0 (Nov 2025 wave) section of `ioc-packages.txt` is imported +verbatim from Datadog's consolidated 7-vendor CSV. To refresh: + +```bash +curl -fsSL https://raw.githubusercontent.com/DataDog/indicators-of-compromise/main/shai-hulud-2.0/consolidated_iocs.csv -o /tmp/datadog-iocs.csv + +python3 - <<'PY' +import csv +with open('/tmp/datadog-iocs.csv') as f: + r = csv.reader(f); next(r) + for name, versions, _ in r: + for v in (x.strip() for x in versions.split(',') if x.strip()): + print(f"npm:{name}@{v}") +PY +``` + +Replace the block under `# npm — Shai-Hulud 2.0 (Datadog consolidated snapshot…)` +with the new output, bump "Snapshot: fetched YYYY-MM-DD", and PR as in the +generic flow above. Do not edit the snapshot rows by hand — always +re-import the full block so the file stays diff-able against upstream. + +## Audit trail + +Every refresh PR must link the upstream advisory in the PR body. The +SECURITY-RUNBOOK.md (DEVOP-571) has the long-form decision tree. diff --git a/.github/security/ioc-hashes.txt b/.github/security/ioc-hashes.txt new file mode 100644 index 0000000..6afc182 --- /dev/null +++ b/.github/security/ioc-hashes.txt @@ -0,0 +1,51 @@ +# IOC SHA-256 hash list — known Shai-Hulud dropper payloads. +# +# Format: one lowercase hex SHA-256 per line, optional `# comment` after. +# Consumed by .github/workflows/shai-hulud-sweep.yml (DEVOP-560), which +# matches these against artifacts checked into repos (lockfile inline blobs, +# vendored bundles, anything tarball-extracted to disk during CI). +# +# Refresh: ad-hoc on advisory publication; weekly from Socket + Datadog IOC repo. +# +# Last refreshed: 2026-05-13 (DEVOP-561) +# Sources: +# - Socket: "Updated and Ongoing Supply Chain Attack Targets CrowdStrike NPM +# Packages" — canonical V1–V7 bundle.js hashes for the Sept 2025 wave. +# https://socket.dev/blog/ongoing-supply-chain-attack-targets-crowdstrike-npm-packages +# - Socket: "Shai Hulud Strikes Again (v2)" — Nov 2025 second-wave context. +# https://socket.dev/blog/shai-hulud-strikes-again-v2 +# - Datadog Security Labs: "The Shai-Hulud 2.0 npm worm: analysis" +# and the IOC repo at github.com/DataDog/indicators-of-compromise/tree/main/shai-hulud-2.0 +# — canonical SHA-256s for setup_bun.js / bun_environment.js (Nov 2025). +# https://securitylabs.datadoghq.com/articles/shai-hulud-2.0-npm-worm/ +# - StepSecurity, Unit 42 (Palo Alto Networks) — corroboration for V6 hash. +# https://www.stepsecurity.io/blog/ctrl-tinycolor-and-40-npm-packages-compromised +# https://unit42.paloaltonetworks.com/npm-supply-chain-attack/ + +# ----------------------------------------------------------------------------- +# Shai-Hulud — bundle.js droppers (Sept 2025 CrowdStrike-disclosed wave) +# ----------------------------------------------------------------------------- +# Source: Socket "Updated and Ongoing Supply Chain Attack Targets CrowdStrike +# NPM Packages" advisory. Each hash is the SHA-256 of one of the seven known +# minified bundle.js payloads injected via postinstall scripts. +de0e25a3e6c1e1e5998b306b7141b3dc4c0088da9d7bb47c1c00c91e6e4f85d6 # bundle.js V1 +81d2a004a1bca6ef87a1caf7d0e0b355ad1764238e40ff6d1b1cb77ad4f595c3 # bundle.js V2 +83a650ce44b2a9854802a7fb4c202877815274c129af49e6c2d1d5d5d55c501e # bundle.js V3 +4b2399646573bb737c4969563303d8ee2e9ddbd1b271f1ca9e35ea78062538db # bundle.js V4 +dc67467a39b70d1cd4c1f7f7a459b35058163592f4a9e8fb4dffcbba98ef210c # bundle.js V5 +46faab8ab153fae6e80e7cca38eab363075bb524edd79e42269217a083628f09 # bundle.js V6 (CISA / Unit 42 / StepSecurity corroborated) +b74caeaa75e077c99f7d44f46daaf9796a3be43ecf24f2a1fd381844669da777 # bundle.js V7 + +# ----------------------------------------------------------------------------- +# Shai-Hulud 2.0 — setup_bun.js + bun_environment.js (Nov 2025 second wave) +# ----------------------------------------------------------------------------- +# Source: Datadog Security Labs Shai-Hulud 2.0 analysis. The 2.0 wave drops two +# files via a `preinstall` script instead of postinstall: a small loader +# (setup_bun.js) plus an obfuscated payload (bun_environment.js, ~10MB). +a3894003ad1d293ba96d77881ccd2071446dc3f65f434669b49b3da92421901a # setup_bun.js +62ee164b9b306250c1172583f138c9614139264f889fa99614903c12755468d0 # bun_environment.js +cbb9bc5a8496243e02f3cc080efbe3e4a1430ba0671f2e43a202bf45b05479cd # bun_environment.js +f099c5d9ec417d4445a0328ac0ada9cde79fc37410914103ae9c609cbc0ee068 # bun_environment.js +f1df4896244500671eb4aa63ebb48ea11cee196fafaa0e9874e17b24ac053c02 # bun_environment.js (OSINT-corroborated) +9d59fd0bcc14b671079824c704575f201b74276238dc07a9c12a93a84195648a # bun_environment.js (OSINT-corroborated) +e0250076c1d2ac38777ea8f542431daf61fcbaab0ca9c196614b28065ef5b918 # bun_environment.js (OSINT-corroborated) diff --git a/.github/security/ioc-packages.txt b/.github/security/ioc-packages.txt new file mode 100644 index 0000000..f508172 --- /dev/null +++ b/.github/security/ioc-packages.txt @@ -0,0 +1,1259 @@ +# IOC package list — Shai-Hulud / Socket-tracked compromised npm + PyPI releases. +# +# Format: one line per :@ +# Consumed by .github/workflows/shai-hulud-sweep.yml (DEVOP-560). +# Refresh: weekly via Socket free feed + GitHub Advisory database; +# ad-hoc when a new wave publishes. See SECURITY-RUNBOOK.md. +# +# Last refreshed: 2026-05-13 (DEVOP-561) +# Sources: +# - Socket advisories (Shai-Hulud 1.0 CrowdStrike wave + 2.0 second wave): +# https://socket.dev/blog/ongoing-supply-chain-attack-targets-crowdstrike-npm-packages +# https://socket.dev/blog/shai-hulud-strikes-again-v2 +# - Datadog Security Labs IOC repo (consolidated 7-vendor snapshot for 2.0): +# https://github.com/DataDog/indicators-of-compromise/tree/main/shai-hulud-2.0 +# - GitHub Advisory Database, npm advisory feed (per-package GHSAs). + +# ----------------------------------------------------------------------------- +# npm — Shai-Hulud "OpenSearch wave" (confirmed by GHSA) +# ----------------------------------------------------------------------------- +npm:@opensearch-project/opensearch@3.5.3 +npm:@opensearch-project/opensearch@3.6.2 +npm:@opensearch-project/opensearch@3.7.0 +npm:@opensearch-project/opensearch@3.8.0 + +# ----------------------------------------------------------------------------- +# PyPI — Shai-Hulud sdist-poisoning variants +# ----------------------------------------------------------------------------- +pypi:mistralai@2.4.6 +pypi:guardrails-ai@0.10.1 + +# ----------------------------------------------------------------------------- +# npm — broader 526-package wave (CrowdStrike-disclosed Sept 2025 onward) +# This block is seeded with the canonical compromised package roots; the full +# version-pinned list is refreshed weekly from Socket. Until the auto-refresh +# job (DEVOP-560) is wired, treat any version of these packages as suspect and +# pin a known-good version. +# ----------------------------------------------------------------------------- +# CrowdStrike-published npm packages (the original infection seed) +npm:@crowdstrike/commitlint@8.1.1 +npm:@crowdstrike/commitlint@8.1.2 +npm:@crowdstrike/falcon-shoelace@0.4.1 +npm:@crowdstrike/falcon-shoelace@0.4.2 +npm:@crowdstrike/foundry-js@0.19.1 +npm:@crowdstrike/foundry-js@0.19.2 +npm:@crowdstrike/glide-core@0.34.2 +npm:@crowdstrike/glide-core@0.34.3 +npm:@crowdstrike/logscale-dashboard@1.205.1 +npm:@crowdstrike/logscale-dashboard@1.205.2 +npm:@crowdstrike/logscale-file-editor@1.205.1 +npm:@crowdstrike/logscale-file-editor@1.205.2 +npm:@crowdstrike/logscale-parser-edit@1.205.1 +npm:@crowdstrike/logscale-parser-edit@1.205.2 +npm:@crowdstrike/logscale-search@1.205.1 +npm:@crowdstrike/logscale-search@1.205.2 + +# TinyColor family +npm:@ctrl/tinycolor@4.1.1 +npm:@ctrl/tinycolor@4.1.2 +npm:@ctrl/deluge@7.2.1 +npm:@ctrl/deluge@7.2.2 +npm:@ctrl/golang-template@1.4.2 +npm:@ctrl/golang-template@1.4.3 +npm:@ctrl/magnet-link@4.0.3 +npm:@ctrl/magnet-link@4.0.4 +npm:@ctrl/ngx-codemirror@7.0.1 +npm:@ctrl/ngx-codemirror@7.0.2 +npm:@ctrl/ngx-csv@6.0.1 +npm:@ctrl/ngx-csv@6.0.2 +npm:@ctrl/ngx-emoji-mart@9.2.1 +npm:@ctrl/ngx-emoji-mart@9.2.2 +npm:@ctrl/ngx-rightclick@4.0.1 +npm:@ctrl/ngx-rightclick@4.0.2 +npm:@ctrl/qbittorrent@9.7.1 +npm:@ctrl/qbittorrent@9.7.2 +npm:@ctrl/react-adsense@2.0.1 +npm:@ctrl/react-adsense@2.0.2 +npm:@ctrl/shared-torrent@6.3.1 +npm:@ctrl/shared-torrent@6.3.2 +npm:@ctrl/torrent-file@4.1.1 +npm:@ctrl/torrent-file@4.1.2 +npm:@ctrl/transmission@7.3.1 +npm:@ctrl/ts-base32@4.0.1 +npm:@ctrl/ts-base32@4.0.2 + +# NativeScript family (extend during weekly refresh) +npm:@nativescript-community/arraybuffers@1.1.6 +npm:@nativescript-community/arraybuffers@1.1.7 +npm:@nativescript-community/gesturehandler@2.0.35 +npm:@nativescript-community/perms@3.0.5 +npm:@nativescript-community/sentry@4.6.43 +npm:@nativescript-community/sqlite@3.5.2 +npm:@nativescript-community/text@1.6.9 +npm:@nativescript-community/typeorm@0.2.30 +npm:@nativescript-community/ui-collectionview@6.0.6 +npm:@nativescript-community/ui-document-picker@1.1.27 +npm:@nativescript-community/ui-drawer@0.1.30 +npm:@nativescript-community/ui-image@4.5.6 +npm:@nativescript-community/ui-label@1.3.35 +npm:@nativescript-community/ui-material-bottomsheet@7.2.72 +npm:@nativescript-community/ui-material-core@7.2.76 +npm:@nativescript-community/ui-material-core-tabs@7.2.76 + +# Teselagen +npm:@teselagen/bio-parsers@0.4.31 +npm:@teselagen/bounce-loader@0.3.17 +npm:@teselagen/file-utils@0.3.23 +npm:@teselagen/liquibase-tools@0.4.1 +npm:@teselagen/ove@0.7.41 +npm:@teselagen/range-utils@0.3.15 +npm:@teselagen/react-list@0.8.20 +npm:@teselagen/react-table@6.10.20 +npm:@teselagen/sequence-utils@0.3.34 +npm:@teselagen/ui@1.0.183 + +# ThingsFactory / Operato (Operato-org packages — all flagged in the 526 wave) +npm:@things-factory/attachment-base@9.0.43 +npm:@things-factory/attachment-base@9.0.45 +npm:@things-factory/auth-base@9.0.43 +npm:@things-factory/email-base@9.0.42 +npm:@things-factory/email-base@9.0.45 +npm:@things-factory/integration-base@9.0.43 +npm:@things-factory/setting-base@9.0.43 +npm:@things-factory/setting-base@9.0.45 +npm:@things-factory/shell@9.0.43 +npm:@things-factory/work-base@9.0.43 +npm:@things-factory/work-base@9.0.45 + +# rxnt-* family +npm:rxnt-authentication@0.0.6 +npm:rxnt-healthchecks-nestjs@1.0.5 +npm:rxnt-kue@1.0.7 + +# ----------------------------------------------------------------------------- +# Gap notice — Shai-Hulud 1.0 (Sept 2025) wave remainder. +# ----------------------------------------------------------------------------- +# +# The hand-seeded npm blocks above (CrowdStrike / TinyColor / NativeScript / +# Teselagen / ThingsFactory / rxnt) are the canonical roots of the Sept 2025 +# 526-package wave that we have authoritative version-pin data for. The full +# wave list is NOT hand-typed here: partial / stale @version pins risk false +# negatives (wrong version range) and false positives (typos colliding with +# unrelated packages). +# +# The remaining 1.0-wave entries are appended at run time from the Socket free +# feed by the daily sweep workflow (DEVOP-560). Until DEVOP-560 ships: +# +# 1. The Socket CLI guard in CONTRIBUTING.md (DEVOP-572) blocks installs +# of any package Socket has flagged, regardless of whether the exact +# @version is listed here. +# 2. Org policy treats ANY version of the package roots listed above as +# suspect — pin a known-good prior version and open an incident ticket. +# +# Note: the Shai-Hulud 2.0 wave (Nov 2025) is fully covered below via the +# Datadog consolidated snapshot, so only the 1.0 wave remainder is gap'd. + +# ----------------------------------------------------------------------------- +# npm — Shai-Hulud 2.0 (Datadog consolidated snapshot, Nov 2025 wave) +# ----------------------------------------------------------------------------- +# +# Source: https://github.com/DataDog/indicators-of-compromise/tree/main/shai-hulud-2.0 +# Snapshot: consolidated_iocs.csv at commit main (fetched 2026-05-13). +# Coverage: 795 unique packages, 1091 name@version pins, joined from +# datadog + socketdev + stepsecurity + wiz + reversinglabs + helixguard + koi. +# +# Per-row source attribution lives in the upstream CSV; we collapse it +# here because the sweep consumer only needs the ecosystem:name@version key. +# Refresh by re-running the import script in REFRESH.md. +# +npm:02-echo@0.0.7 +npm:@accordproject/concerto-analysis@3.24.1 +npm:@accordproject/concerto-linter@3.24.1 +npm:@accordproject/concerto-linter-default-ruleset@3.24.1 +npm:@accordproject/concerto-metamodel@3.12.5 +npm:@accordproject/concerto-types@3.24.1 +npm:@accordproject/markdown-it-cicero@0.16.26 +npm:@accordproject/template-engine@2.7.2 +npm:@actbase/css-to-react-native-transform@1.0.3 +npm:@actbase/native@0.1.32 +npm:@actbase/node-server@1.1.19 +npm:@actbase/react-absolute@0.8.3 +npm:@actbase/react-daum-postcode@1.0.5 +npm:@actbase/react-kakaosdk@0.9.27 +npm:@actbase/react-native-actionsheet@1.0.3 +npm:@actbase/react-native-devtools@0.1.3 +npm:@actbase/react-native-fast-image@8.5.13 +npm:@actbase/react-native-kakao-channel@1.0.2 +npm:@actbase/react-native-kakao-navi@2.0.4 +npm:@actbase/react-native-less-transformer@1.0.6 +npm:@actbase/react-native-naver-login@1.0.1 +npm:@actbase/react-native-simple-video@1.0.13 +npm:@actbase/react-native-tiktok@1.1.3 +npm:@afetcan/api@0.0.13 +npm:@afetcan/storage@0.0.27 +npm:@alaan/s2s-auth@2.0.3 +npm:@alexadark/amadeus-api@1.0.4 +npm:@alexadark/gatsby-theme-events@1.0.1 +npm:@alexadark/gatsby-theme-wordpress-blog@2.0.1 +npm:@alexadark/reusable-functions@1.5.1 +npm:@alexcolls/nuxt-socket.io@0.0.7 +npm:@alexcolls/nuxt-socket.io@0.0.8 +npm:@alexcolls/nuxt-ux@0.6.1 +npm:@alexcolls/nuxt-ux@0.6.2 +npm:@antstackio/eslint-config-antstack@0.0.3 +npm:@antstackio/express-graphql-proxy@0.2.8 +npm:@antstackio/graphql-body-parser@0.1.1 +npm:@antstackio/json-to-graphql@1.0.3 +npm:@antstackio/shelbysam@1.1.7 +npm:@aryanhussain/my-angular-lib@0.0.23 +npm:@asyncapi/avro-schema-parser@3.0.25 +npm:@asyncapi/avro-schema-parser@3.0.26 +npm:@asyncapi/bundler@0.6.5 +npm:@asyncapi/bundler@0.6.6 +npm:@asyncapi/cli@4.1.2 +npm:@asyncapi/cli@4.1.3 +npm:@asyncapi/converter@1.6.3 +npm:@asyncapi/converter@1.6.4 +npm:@asyncapi/diff@0.5.1 +npm:@asyncapi/diff@0.5.2 +npm:@asyncapi/dotnet-rabbitmq-template@1.0.1 +npm:@asyncapi/dotnet-rabbitmq-template@1.0.2 +npm:@asyncapi/edavisualiser@1.2.1 +npm:@asyncapi/edavisualiser@1.2.2 +npm:@asyncapi/generator@2.8.5 +npm:@asyncapi/generator@2.8.6 +npm:@asyncapi/generator-components@0.3.2 +npm:@asyncapi/generator-components@0.3.3 +npm:@asyncapi/generator-helpers@0.2.1 +npm:@asyncapi/generator-helpers@0.2.2 +npm:@asyncapi/generator-react-sdk@1.1.4 +npm:@asyncapi/generator-react-sdk@1.1.5 +npm:@asyncapi/go-watermill-template@0.2.76 +npm:@asyncapi/go-watermill-template@0.2.77 +npm:@asyncapi/html-template@3.3.2 +npm:@asyncapi/html-template@3.3.3 +npm:@asyncapi/java-spring-cloud-stream-template@0.13.5 +npm:@asyncapi/java-spring-cloud-stream-template@0.13.6 +npm:@asyncapi/java-spring-template@1.6.1 +npm:@asyncapi/java-spring-template@1.6.2 +npm:@asyncapi/java-template@0.3.5 +npm:@asyncapi/java-template@0.3.6 +npm:@asyncapi/keeper@0.0.2 +npm:@asyncapi/keeper@0.0.3 +npm:@asyncapi/markdown-template@1.6.8 +npm:@asyncapi/markdown-template@1.6.9 +npm:@asyncapi/modelina@5.10.2 +npm:@asyncapi/modelina@5.10.3 +npm:@asyncapi/modelina-cli@5.10.2 +npm:@asyncapi/modelina-cli@5.10.3 +npm:@asyncapi/multi-parser@2.2.1 +npm:@asyncapi/multi-parser@2.2.2 +npm:@asyncapi/nodejs-template@3.0.5 +npm:@asyncapi/nodejs-template@3.0.6 +npm:@asyncapi/nodejs-ws-template@0.10.1 +npm:@asyncapi/nodejs-ws-template@0.10.2 +npm:@asyncapi/nunjucks-filters@2.1.1 +npm:@asyncapi/nunjucks-filters@2.1.2 +npm:@asyncapi/openapi-schema-parser@3.0.25 +npm:@asyncapi/openapi-schema-parser@3.0.26 +npm:@asyncapi/optimizer@1.0.5 +npm:@asyncapi/optimizer@1.0.6 +npm:@asyncapi/parser@3.4.1 +npm:@asyncapi/parser@3.4.2 +npm:@asyncapi/php-template@0.1.1 +npm:@asyncapi/php-template@0.1.2 +npm:@asyncapi/problem@1.0.1 +npm:@asyncapi/problem@1.0.2 +npm:@asyncapi/protobuf-schema-parser@3.5.2 +npm:@asyncapi/protobuf-schema-parser@3.5.3 +npm:@asyncapi/protobuf-schema-parser@3.6.1 +npm:@asyncapi/python-paho-template@0.2.14 +npm:@asyncapi/python-paho-template@0.2.15 +npm:@asyncapi/react-component@2.6.6 +npm:@asyncapi/react-component@2.6.7 +npm:@asyncapi/server-api@0.16.24 +npm:@asyncapi/server-api@0.16.25 +npm:@asyncapi/specs@6.10.1 +npm:@asyncapi/specs@6.8.2 +npm:@asyncapi/specs@6.8.3 +npm:@asyncapi/specs@6.9.1 +npm:@asyncapi/studio@1.0.2 +npm:@asyncapi/studio@1.0.3 +npm:@asyncapi/web-component@2.6.6 +npm:@asyncapi/web-component@2.6.7 +npm:@bdkinc/knex-ibmi@0.5.7 +npm:@browserbasehq/bb9@1.2.21 +npm:@browserbasehq/director-ai@1.0.3 +npm:@browserbasehq/mcp@2.1.1 +npm:@browserbasehq/mcp-server-browserbase@2.4.2 +npm:@browserbasehq/sdk-functions@0.0.4 +npm:@browserbasehq/stagehand@3.0.4 +npm:@browserbasehq/stagehand-docs@1.0.1 +npm:@caretive/caret-cli@0.0.2 +npm:@chtijs/eslint-config@1.0.1 +npm:@clausehq/flows-step-httprequest@0.1.14 +npm:@clausehq/flows-step-jsontoxml@0.1.14 +npm:@clausehq/flows-step-mqtt@0.1.14 +npm:@clausehq/flows-step-sendgridemail@0.1.14 +npm:@clausehq/flows-step-taskscreateurl@0.1.14 +npm:@cllbk/ghl@1.3.1 +npm:@commute/bloom@1.0.3 +npm:@commute/market-data@1.0.2 +npm:@commute/market-data-chartjs@2.3.1 +npm:@dev-blinq/ai-qa-logic@1.0.19 +npm:@dev-blinq/blinqioclient@1.0.21 +npm:@dev-blinq/cucumber-js@1.0.131 +npm:@dev-blinq/cucumber_client@1.0.1637-dev +npm:@dev-blinq/cucumber_client@1.0.738 +npm:@dev-blinq/cucumber_client@1.0.739 +npm:@dev-blinq/ui-systems@1.0.93 +npm:@ensdomains/address-encoder@1.1.5 +npm:@ensdomains/blacklist@1.0.1 +npm:@ensdomains/buffer@0.1.2 +npm:@ensdomains/ccip-read-cf-worker@0.0.4 +npm:@ensdomains/ccip-read-dns-gateway@0.1.1 +npm:@ensdomains/ccip-read-router@0.0.7 +npm:@ensdomains/ccip-read-worker-viem@0.0.4 +npm:@ensdomains/content-hash@3.0.1 +npm:@ensdomains/curvearithmetics@1.0.1 +npm:@ensdomains/cypress-metamask@1.2.1 +npm:@ensdomains/dnsprovejs@0.5.3 +npm:@ensdomains/dnssec-oracle-anchors@0.0.2 +npm:@ensdomains/dnssecoraclejs@0.2.9 +npm:@ensdomains/durin@0.1.2 +npm:@ensdomains/durin-middleware@0.0.2 +npm:@ensdomains/ens-archived-contracts@0.0.3 +npm:@ensdomains/ens-avatar@1.0.4 +npm:@ensdomains/ens-contracts@1.6.1 +npm:@ensdomains/ens-test-env@1.0.2 +npm:@ensdomains/ens-validation@0.1.1 +npm:@ensdomains/ensjs@4.0.3 +npm:@ensdomains/ensjs-react@0.0.5 +npm:@ensdomains/eth-ens-namehash@2.0.16 +npm:@ensdomains/hackathon-registrar@1.0.5 +npm:@ensdomains/hardhat-chai-matchers-viem@0.1.15 +npm:@ensdomains/hardhat-toolbox-viem-extended@0.0.6 +npm:@ensdomains/mock@2.1.52 +npm:@ensdomains/name-wrapper@1.0.1 +npm:@ensdomains/offchain-resolver-contracts@0.2.2 +npm:@ensdomains/op-resolver-contracts@0.0.2 +npm:@ensdomains/react-ens-address@0.0.32 +npm:@ensdomains/renewal@0.0.13 +npm:@ensdomains/renewal-widget@0.1.10 +npm:@ensdomains/reverse-records@1.0.1 +npm:@ensdomains/server-analytics@0.0.2 +npm:@ensdomains/solsha1@0.0.4 +npm:@ensdomains/subdomain-registrar@0.2.4 +npm:@ensdomains/test-utils@1.3.1 +npm:@ensdomains/thorin@0.6.51 +npm:@ensdomains/ui@3.4.6 +npm:@ensdomains/unicode-confusables@0.1.1 +npm:@ensdomains/unruggable-gateways@0.0.3 +npm:@ensdomains/vite-plugin-i18next-loader@4.0.4 +npm:@ensdomains/web3modal@1.10.2 +npm:@everreal/react-charts@2.0.1 +npm:@everreal/react-charts@2.0.2 +npm:@everreal/validate-esmoduleinterop-imports@1.4.4 +npm:@everreal/validate-esmoduleinterop-imports@1.4.5 +npm:@everreal/web-analytics@0.0.1 +npm:@everreal/web-analytics@0.0.2 +npm:@faq-component/core@0.0.4 +npm:@faq-component/react@1.0.1 +npm:@fishingbooker/browser-sync-plugin@1.0.5 +npm:@fishingbooker/react-loader@1.0.7 +npm:@fishingbooker/react-pagination@2.0.6 +npm:@fishingbooker/react-raty@2.0.1 +npm:@fishingbooker/react-swiper@0.1.5 +npm:@hapheus/n8n-nodes-pgp@1.5.1 +npm:@hover-design/core@0.0.1 +npm:@hover-design/react@0.2.1 +npm:@huntersofbook/auth-vue@0.4.2 +npm:@huntersofbook/core@0.5.1 +npm:@huntersofbook/core-nuxt@0.4.2 +npm:@huntersofbook/form-naiveui@0.5.1 +npm:@huntersofbook/i18n@0.8.2 +npm:@huntersofbook/ui@0.5.1 +npm:@hyperlook/telemetry-sdk@1.0.19 +npm:@ifelsedeveloper/protocol-contracts-svm-idl@0.1.2 +npm:@ifelsedeveloper/protocol-contracts-svm-idl@0.1.3 +npm:@ifings/design-system@4.9.2 +npm:@ifings/metatron3@0.1.5 +npm:@jayeshsadhwani/telemetry-sdk@1.0.14 +npm:@kvytech/cli@0.0.7 +npm:@kvytech/components@0.0.2 +npm:@kvytech/habbit-e2e-test@0.0.2 +npm:@kvytech/medusa-plugin-announcement@0.0.8 +npm:@kvytech/medusa-plugin-management@0.0.5 +npm:@kvytech/medusa-plugin-newsletter@0.0.5 +npm:@kvytech/medusa-plugin-product-reviews@0.0.9 +npm:@kvytech/medusa-plugin-promotion@0.0.2 +npm:@kvytech/web@0.0.2 +npm:@lessondesk/api-client@9.12.2 +npm:@lessondesk/api-client@9.12.3 +npm:@lessondesk/babel-preset@1.0.1 +npm:@lessondesk/electron-group-api-client@1.0.3 +npm:@lessondesk/eslint-config@1.4.2 +npm:@lessondesk/material-icons@1.0.3 +npm:@lessondesk/react-table-context@2.0.4 +npm:@lessondesk/schoolbus@5.2.2 +npm:@lessondesk/schoolbus@5.2.3 +npm:@livecms/live-edit@0.0.32 +npm:@livecms/nuxt-live-edit@1.9.2 +npm:@lokeswari-satyanarayanan/rn-zustand-expo-template@1.0.9 +npm:@louisle2/core@1.0.1 +npm:@louisle2/cortex-js@0.1.6 +npm:@lpdjs/firestore-repo-service@1.0.1 +npm:@lui-ui/lui-nuxt@0.1.1 +npm:@lui-ui/lui-tailwindcss@0.1.2 +npm:@lui-ui/lui-vue@1.0.13 +npm:@markvivanco/app-version-checker@1.0.1 +npm:@markvivanco/app-version-checker@1.0.2 +npm:@mcp-use/cli@2.2.6 +npm:@mcp-use/cli@2.2.7 +npm:@mcp-use/inspector@0.6.2 +npm:@mcp-use/inspector@0.6.3 +npm:@mcp-use/mcp-use@1.0.1 +npm:@mcp-use/mcp-use@1.0.2 +npm:@micado-digital/stadtmarketing-kufstein-external@1.9.1 +npm:@mizzle-dev/orm@0.0.2 +npm:@mparpaillon/connector-parse@1.0.1 +npm:@mparpaillon/imagesloaded@4.1.2 +npm:@mparpaillon/page@1.0.1 +npm:@ntnx/passport-wso2@0.0.3 +npm:@ntnx/t@0.0.101 +npm:@oku-ui/accordion@0.6.2 +npm:@oku-ui/alert-dialog@0.6.2 +npm:@oku-ui/arrow@0.6.2 +npm:@oku-ui/aspect-ratio@0.6.2 +npm:@oku-ui/avatar@0.6.2 +npm:@oku-ui/checkbox@0.6.3 +npm:@oku-ui/collapsible@0.6.2 +npm:@oku-ui/collection@0.6.2 +npm:@oku-ui/dialog@0.6.2 +npm:@oku-ui/direction@0.6.2 +npm:@oku-ui/dismissable-layer@0.6.2 +npm:@oku-ui/focus-guards@0.6.2 +npm:@oku-ui/focus-scope@0.6.2 +npm:@oku-ui/hover-card@0.6.2 +npm:@oku-ui/label@0.6.2 +npm:@oku-ui/menu@0.6.2 +npm:@oku-ui/motion@0.4.4 +npm:@oku-ui/motion-nuxt@0.2.2 +npm:@oku-ui/popover@0.6.2 +npm:@oku-ui/popper@0.6.2 +npm:@oku-ui/portal@0.6.2 +npm:@oku-ui/presence@0.6.2 +npm:@oku-ui/primitive@0.6.2 +npm:@oku-ui/primitives@0.7.9 +npm:@oku-ui/primitives-nuxt@0.3.1 +npm:@oku-ui/progress@0.6.2 +npm:@oku-ui/provide@0.6.2 +npm:@oku-ui/radio-group@0.6.2 +npm:@oku-ui/roving-focus@0.6.2 +npm:@oku-ui/scroll-area@0.6.2 +npm:@oku-ui/separator@0.6.2 +npm:@oku-ui/slider@0.6.2 +npm:@oku-ui/slot@0.6.2 +npm:@oku-ui/switch@0.6.2 +npm:@oku-ui/tabs@0.6.2 +npm:@oku-ui/toast@0.6.2 +npm:@oku-ui/toggle@0.6.2 +npm:@oku-ui/toggle-group@0.6.2 +npm:@oku-ui/toolbar@0.6.2 +npm:@oku-ui/tooltip@0.6.2 +npm:@oku-ui/use-composable@0.6.2 +npm:@oku-ui/utils@0.6.2 +npm:@oku-ui/visually-hidden@0.6.2 +npm:@orbitgtbelgium/mapbox-gl-draw-cut-polygon-mode@2.0.5 +npm:@orbitgtbelgium/mapbox-gl-draw-scale-rotate-mode@1.1.1 +npm:@orbitgtbelgium/orbit-components@1.2.9 +npm:@orbitgtbelgium/time-slider@1.0.187 +npm:@osmanekrem/bmad@1.0.6 +npm:@osmanekrem/error-handler@1.2.2 +npm:@pergel/cli@0.11.1 +npm:@pergel/module-box@0.6.1 +npm:@pergel/module-graphql@0.6.1 +npm:@pergel/module-ui@0.0.9 +npm:@pergel/nuxt@0.25.5 +npm:@posthog/agent@1.24.1 +npm:@posthog/ai@7.1.2 +npm:@posthog/automatic-cohorts-plugin@0.0.8 +npm:@posthog/bitbucket-release-tracker@0.0.8 +npm:@posthog/cli@0.5.15 +npm:@posthog/clickhouse@1.7.1 +npm:@posthog/core@1.5.6 +npm:@posthog/currency-normalization-plugin@0.0.8 +npm:@posthog/customerio-plugin@0.0.8 +npm:@posthog/databricks-plugin@0.0.8 +npm:@posthog/drop-events-on-property-plugin@0.0.8 +npm:@posthog/event-sequence-timer-plugin@0.0.8 +npm:@posthog/filter-out-plugin@0.0.8 +npm:@posthog/first-time-event-tracker@0.0.8 +npm:@posthog/geoip-plugin@0.0.8 +npm:@posthog/github-release-tracking-plugin@0.0.8 +npm:@posthog/gitub-star-sync-plugin@0.0.8 +npm:@posthog/heartbeat-plugin@0.0.8 +npm:@posthog/hedgehog-mode@0.0.42 +npm:@posthog/icons@0.36.1 +npm:@posthog/ingestion-alert-plugin@0.0.8 +npm:@posthog/intercom-plugin@0.0.8 +npm:@posthog/kinesis-plugin@0.0.8 +npm:@posthog/laudspeaker-plugin@0.0.8 +npm:@posthog/lemon-ui@0.0.1 +npm:@posthog/maxmind-plugin@0.1.6 +npm:@posthog/migrator3000-plugin@0.0.8 +npm:@posthog/netdata-event-processing@0.0.8 +npm:@posthog/nextjs@0.0.3 +npm:@posthog/nextjs-config@1.5.1 +npm:@posthog/nuxt@1.2.9 +npm:@posthog/pagerduty-plugin@0.0.8 +npm:@posthog/piscina@3.2.1 +npm:@posthog/plugin-contrib@0.0.6 +npm:@posthog/plugin-server@1.10.8 +npm:@posthog/plugin-unduplicates@0.0.8 +npm:@posthog/postgres-plugin@0.0.8 +npm:@posthog/react-rrweb-player@1.1.4 +npm:@posthog/rrdom@0.0.31 +npm:@posthog/rrweb@0.0.31 +npm:@posthog/rrweb-player@0.0.31 +npm:@posthog/rrweb-record@0.0.31 +npm:@posthog/rrweb-replay@0.0.19 +npm:@posthog/rrweb-snapshot@0.0.31 +npm:@posthog/rrweb-utils@0.0.31 +npm:@posthog/sendgrid-plugin@0.0.8 +npm:@posthog/siphash@1.1.2 +npm:@posthog/snowflake-export-plugin@0.0.8 +npm:@posthog/taxonomy-plugin@0.0.8 +npm:@posthog/twilio-plugin@0.0.8 +npm:@posthog/twitter-followers-plugin@0.0.8 +npm:@posthog/url-normalizer-plugin@0.0.8 +npm:@posthog/variance-plugin@0.0.8 +npm:@posthog/web-dev-server@1.0.5 +npm:@posthog/wizard@1.18.1 +npm:@posthog/zendesk-plugin@0.0.8 +npm:@postman/aether-icons@2.23.2 +npm:@postman/aether-icons@2.23.3 +npm:@postman/aether-icons@2.23.4 +npm:@postman/csv-parse@4.0.3 +npm:@postman/csv-parse@4.0.4 +npm:@postman/csv-parse@4.0.5 +npm:@postman/final-node-keytar@7.9.1 +npm:@postman/final-node-keytar@7.9.2 +npm:@postman/final-node-keytar@7.9.3 +npm:@postman/mcp-ui-client@5.5.1 +npm:@postman/mcp-ui-client@5.5.2 +npm:@postman/mcp-ui-client@5.5.3 +npm:@postman/node-keytar@7.9.4 +npm:@postman/node-keytar@7.9.5 +npm:@postman/node-keytar@7.9.6 +npm:@postman/pm-bin-linux-x64@1.24.3 +npm:@postman/pm-bin-linux-x64@1.24.4 +npm:@postman/pm-bin-linux-x64@1.24.5 +npm:@postman/pm-bin-macos-arm64@1.24.3 +npm:@postman/pm-bin-macos-arm64@1.24.4 +npm:@postman/pm-bin-macos-arm64@1.24.5 +npm:@postman/pm-bin-macos-x64@1.24.3 +npm:@postman/pm-bin-macos-x64@1.24.4 +npm:@postman/pm-bin-macos-x64@1.24.5 +npm:@postman/pm-bin-windows-x64@1.24.3 +npm:@postman/pm-bin-windows-x64@1.24.4 +npm:@postman/pm-bin-windows-x64@1.24.5 +npm:@postman/postman-collection-fork@4.3.3 +npm:@postman/postman-collection-fork@4.3.4 +npm:@postman/postman-collection-fork@4.3.5 +npm:@postman/postman-mcp-cli@1.0.3 +npm:@postman/postman-mcp-cli@1.0.4 +npm:@postman/postman-mcp-cli@1.0.5 +npm:@postman/postman-mcp-server@2.4.10 +npm:@postman/postman-mcp-server@2.4.11 +npm:@postman/postman-mcp-server@2.4.12 +npm:@postman/pretty-ms@6.1.1 +npm:@postman/pretty-ms@6.1.2 +npm:@postman/pretty-ms@6.1.3 +npm:@postman/secret-scanner-wasm@2.1.2 +npm:@postman/secret-scanner-wasm@2.1.3 +npm:@postman/secret-scanner-wasm@2.1.4 +npm:@postman/tunnel-agent@0.6.5 +npm:@postman/tunnel-agent@0.6.6 +npm:@postman/tunnel-agent@0.6.7 +npm:@postman/wdio-allure-reporter@0.0.7 +npm:@postman/wdio-allure-reporter@0.0.8 +npm:@postman/wdio-allure-reporter@0.0.9 +npm:@postman/wdio-junit-reporter@0.0.4 +npm:@postman/wdio-junit-reporter@0.0.5 +npm:@postman/wdio-junit-reporter@0.0.6 +npm:@pradhumngautam/common-app@1.0.2 +npm:@productdevbook/animejs-vue@0.2.1 +npm:@productdevbook/auth@0.2.2 +npm:@productdevbook/chatwoot@2.0.1 +npm:@productdevbook/motion@1.0.4 +npm:@productdevbook/ts-i18n@1.4.2 +npm:@pruthvi21/use-debounce@1.0.3 +npm:@quick-start-soft/quick-document-translator@1.4.2511142126 +npm:@quick-start-soft/quick-git-clean-markdown@1.4.2511142126 +npm:@quick-start-soft/quick-markdown@1.4.2511142126 +npm:@quick-start-soft/quick-markdown-compose@1.4.2506300029 +npm:@quick-start-soft/quick-markdown-image@1.4.2511142126 +npm:@quick-start-soft/quick-markdown-print@1.4.2511142126 +npm:@quick-start-soft/quick-markdown-translator@1.4.2509202331 +npm:@quick-start-soft/quick-remove-image-background@1.4.2511142126 +npm:@quick-start-soft/quick-task-refine@1.4.2511142126 +npm:@relyt/claude-context-core@0.1.1 +npm:@relyt/claude-context-mcp@0.1.1 +npm:@relyt/mcp-server-relytone@0.0.3 +npm:@sameepsi/sor@1.0.3 +npm:@sameepsi/sor2@2.0.2 +npm:@seezo/sdr-mcp-server@0.0.5 +npm:@seung-ju/next@0.0.2 +npm:@seung-ju/openapi-generator@0.0.4 +npm:@seung-ju/react-hooks@0.0.2 +npm:@seung-ju/react-native-action-sheet@0.2.1 +npm:@silgi/better-auth@0.8.1 +npm:@silgi/drizzle@0.8.4 +npm:@silgi/ecosystem@0.7.6 +npm:@silgi/graphql@0.7.15 +npm:@silgi/module-builder@0.8.8 +npm:@silgi/openapi@0.7.4 +npm:@silgi/permission@0.6.8 +npm:@silgi/ratelimit@0.2.1 +npm:@silgi/scalar@0.6.2 +npm:@silgi/yoga@0.7.1 +npm:@sme-ui/aoma-vevasound-metadata-lib@0.1.3 +npm:@strapbuild/react-native-date-time-picker@2.0.4 +npm:@strapbuild/react-native-perspective-image-cropper@0.4.15 +npm:@strapbuild/react-native-perspective-image-cropper-2@0.4.7 +npm:@strapbuild/react-native-perspective-image-cropper-poojan31@0.4.6 +npm:@suraj_h/medium-common@1.0.5 +npm:@thedelta/eslint-config@1.0.2 +npm:@tiaanduplessis/json@2.0.2 +npm:@tiaanduplessis/json@2.0.3 +npm:@tiaanduplessis/react-progressbar@1.0.1 +npm:@tiaanduplessis/react-progressbar@1.0.2 +npm:@trackstar/angular-trackstar-link@1.0.2 +npm:@trackstar/react-trackstar-link@2.0.21 +npm:@trackstar/react-trackstar-link-upgrade@1.1.10 +npm:@trackstar/test-angular-package@0.0.9 +npm:@trackstar/test-package@1.1.5 +npm:@trefox/sleekshop-js@0.1.6 +npm:@trigo/atrix@7.0.1 +npm:@trigo/atrix-acl@4.0.2 +npm:@trigo/atrix-elasticsearch@2.0.1 +npm:@trigo/atrix-mongoose@1.0.2 +npm:@trigo/atrix-orientdb@1.0.2 +npm:@trigo/atrix-postgres@1.0.3 +npm:@trigo/atrix-pubsub@4.0.3 +npm:@trigo/atrix-redis@1.0.2 +npm:@trigo/atrix-soap@1.0.2 +npm:@trigo/atrix-swagger@3.0.1 +npm:@trigo/bool-expressions@4.1.3 +npm:@trigo/eslint-config-trigo@3.3.1 +npm:@trigo/fsm@3.4.2 +npm:@trigo/hapi-auth-signedlink@1.3.1 +npm:@trigo/jsdt@0.2.1 +npm:@trigo/keycloak-api@1.3.1 +npm:@trigo/node-soap@0.5.4 +npm:@trigo/pathfinder-ui-css@0.1.1 +npm:@trigo/trigo-hapijs@5.0.1 +npm:@trpc-rate-limiter/cloudflare@0.1.4 +npm:@trpc-rate-limiter/hono@0.1.4 +npm:@varsityvibe/api-client@1.3.36 +npm:@varsityvibe/api-client@1.3.37 +npm:@varsityvibe/utils@5.0.6 +npm:@varsityvibe/validation-schemas@0.6.7 +npm:@varsityvibe/validation-schemas@0.6.8 +npm:@viapip/eslint-config@0.2.4 +npm:@vishadtyagi/full-year-calendar@0.1.11 +npm:@voiceflow/alexa-types@2.15.60 +npm:@voiceflow/alexa-types@2.15.61 +npm:@voiceflow/anthropic@0.4.4 +npm:@voiceflow/anthropic@0.4.5 +npm:@voiceflow/api-sdk@3.28.58 +npm:@voiceflow/api-sdk@3.28.59 +npm:@voiceflow/backend-utils@5.0.1 +npm:@voiceflow/backend-utils@5.0.2 +npm:@voiceflow/base-types@2.136.2 +npm:@voiceflow/base-types@2.136.3 +npm:@voiceflow/body-parser@1.21.2 +npm:@voiceflow/body-parser@1.21.3 +npm:@voiceflow/chat-types@2.14.58 +npm:@voiceflow/chat-types@2.14.59 +npm:@voiceflow/circleci-config-sdk-orb-import@0.2.1 +npm:@voiceflow/circleci-config-sdk-orb-import@0.2.2 +npm:@voiceflow/commitlint-config@2.6.1 +npm:@voiceflow/commitlint-config@2.6.2 +npm:@voiceflow/common@8.9.1 +npm:@voiceflow/common@8.9.2 +npm:@voiceflow/default-prompt-wrappers@1.7.3 +npm:@voiceflow/default-prompt-wrappers@1.7.4 +npm:@voiceflow/dependency-cruiser-config@1.8.11 +npm:@voiceflow/dependency-cruiser-config@1.8.12 +npm:@voiceflow/dtos-interact@1.40.1 +npm:@voiceflow/dtos-interact@1.40.2 +npm:@voiceflow/encryption@0.3.2 +npm:@voiceflow/encryption@0.3.3 +npm:@voiceflow/eslint-config@7.16.4 +npm:@voiceflow/eslint-config@7.16.5 +npm:@voiceflow/eslint-plugin@1.6.1 +npm:@voiceflow/eslint-plugin@1.6.2 +npm:@voiceflow/exception@1.10.1 +npm:@voiceflow/exception@1.10.2 +npm:@voiceflow/fetch@1.11.1 +npm:@voiceflow/fetch@1.11.2 +npm:@voiceflow/general-types@3.2.22 +npm:@voiceflow/general-types@3.2.23 +npm:@voiceflow/git-branch-check@1.4.3 +npm:@voiceflow/git-branch-check@1.4.4 +npm:@voiceflow/google-dfes-types@2.17.12 +npm:@voiceflow/google-dfes-types@2.17.13 +npm:@voiceflow/google-types@2.21.12 +npm:@voiceflow/google-types@2.21.13 +npm:@voiceflow/husky-config@1.3.1 +npm:@voiceflow/husky-config@1.3.2 +npm:@voiceflow/logger@2.4.2 +npm:@voiceflow/logger@2.4.3 +npm:@voiceflow/metrics@1.5.1 +npm:@voiceflow/metrics@1.5.2 +npm:@voiceflow/natural-language-commander@0.5.2 +npm:@voiceflow/natural-language-commander@0.5.3 +npm:@voiceflow/nestjs-common@2.75.2 +npm:@voiceflow/nestjs-common@2.75.3 +npm:@voiceflow/nestjs-mongodb@1.3.1 +npm:@voiceflow/nestjs-mongodb@1.3.2 +npm:@voiceflow/nestjs-rate-limit@1.3.2 +npm:@voiceflow/nestjs-rate-limit@1.3.3 +npm:@voiceflow/nestjs-redis@1.3.1 +npm:@voiceflow/nestjs-redis@1.3.2 +npm:@voiceflow/nestjs-timeout@1.3.1 +npm:@voiceflow/nestjs-timeout@1.3.2 +npm:@voiceflow/npm-package-json-lint-config@1.1.1 +npm:@voiceflow/npm-package-json-lint-config@1.1.2 +npm:@voiceflow/openai@3.2.2 +npm:@voiceflow/openai@3.2.3 +npm:@voiceflow/pino@6.11.3 +npm:@voiceflow/pino@6.11.4 +npm:@voiceflow/pino-pretty@4.4.1 +npm:@voiceflow/pino-pretty@4.4.2 +npm:@voiceflow/prettier-config@1.10.1 +npm:@voiceflow/prettier-config@1.10.2 +npm:@voiceflow/react-chat@1.65.3 +npm:@voiceflow/react-chat@1.65.4 +npm:@voiceflow/runtime@1.29.1 +npm:@voiceflow/runtime@1.29.2 +npm:@voiceflow/runtime-client-js@1.17.2 +npm:@voiceflow/runtime-client-js@1.17.3 +npm:@voiceflow/sdk-runtime@1.43.1 +npm:@voiceflow/sdk-runtime@1.43.2 +npm:@voiceflow/secrets-provider@1.9.2 +npm:@voiceflow/secrets-provider@1.9.3 +npm:@voiceflow/semantic-release-config@1.4.1 +npm:@voiceflow/semantic-release-config@1.4.2 +npm:@voiceflow/serverless-plugin-typescript@2.1.7 +npm:@voiceflow/serverless-plugin-typescript@2.1.8 +npm:@voiceflow/slate-serializer@1.7.3 +npm:@voiceflow/slate-serializer@1.7.4 +npm:@voiceflow/stitches-react@2.3.2 +npm:@voiceflow/stitches-react@2.3.3 +npm:@voiceflow/storybook-config@1.2.2 +npm:@voiceflow/storybook-config@1.2.3 +npm:@voiceflow/stylelint-config@1.1.1 +npm:@voiceflow/stylelint-config@1.1.2 +npm:@voiceflow/test-common@2.1.1 +npm:@voiceflow/test-common@2.1.2 +npm:@voiceflow/tsconfig@1.12.1 +npm:@voiceflow/tsconfig@1.12.2 +npm:@voiceflow/tsconfig-paths@1.1.4 +npm:@voiceflow/tsconfig-paths@1.1.5 +npm:@voiceflow/utils-designer@1.74.19 +npm:@voiceflow/utils-designer@1.74.20 +npm:@voiceflow/verror@1.1.4 +npm:@voiceflow/verror@1.1.5 +npm:@voiceflow/vite-config@2.6.2 +npm:@voiceflow/vite-config@2.6.3 +npm:@voiceflow/vitest-config@1.10.2 +npm:@voiceflow/vitest-config@1.10.3 +npm:@voiceflow/voice-types@2.10.58 +npm:@voiceflow/voice-types@2.10.59 +npm:@voiceflow/voiceflow-types@3.32.45 +npm:@voiceflow/voiceflow-types@3.32.46 +npm:@voiceflow/widget@1.7.18 +npm:@voiceflow/widget@1.7.19 +npm:@vucod/email@0.0.3 +npm:@zapier/ai-actions@0.1.18 +npm:@zapier/ai-actions@0.1.19 +npm:@zapier/ai-actions@0.1.20 +npm:@zapier/ai-actions-react@0.1.12 +npm:@zapier/ai-actions-react@0.1.13 +npm:@zapier/ai-actions-react@0.1.14 +npm:@zapier/babel-preset-zapier@6.4.1 +npm:@zapier/babel-preset-zapier@6.4.2 +npm:@zapier/babel-preset-zapier@6.4.3 +npm:@zapier/browserslist-config-zapier@1.0.3 +npm:@zapier/browserslist-config-zapier@1.0.4 +npm:@zapier/browserslist-config-zapier@1.0.5 +npm:@zapier/eslint-plugin-zapier@11.0.3 +npm:@zapier/eslint-plugin-zapier@11.0.4 +npm:@zapier/eslint-plugin-zapier@11.0.5 +npm:@zapier/mcp-integration@3.0.1 +npm:@zapier/mcp-integration@3.0.2 +npm:@zapier/mcp-integration@3.0.3 +npm:@zapier/secret-scrubber@1.1.3 +npm:@zapier/secret-scrubber@1.1.4 +npm:@zapier/secret-scrubber@1.1.5 +npm:@zapier/spectral-api-ruleset@1.9.1 +npm:@zapier/spectral-api-ruleset@1.9.2 +npm:@zapier/spectral-api-ruleset@1.9.3 +npm:@zapier/stubtree@0.1.2 +npm:@zapier/stubtree@0.1.3 +npm:@zapier/stubtree@0.1.4 +npm:@zapier/zapier-sdk@0.15.5 +npm:@zapier/zapier-sdk@0.15.6 +npm:@zapier/zapier-sdk@0.15.7 +npm:ai-crowl-shield@1.0.7 +npm:arc-cli-fc@1.0.1 +npm:asciitranslator@1.0.3 +npm:asyncapi-preview@1.0.1 +npm:asyncapi-preview@1.0.2 +npm:atrix@1.0.1 +npm:atrix-mongoose@1.0.1 +npm:automation_model@1.0.491 +npm:avvvatars-vue@1.1.2 +npm:axios-builder@1.2.1 +npm:axios-cancelable@1.0.1 +npm:axios-cancelable@1.0.2 +npm:axios-timed@1.0.1 +npm:axios-timed@1.0.2 +npm:babel-preset-kinvey-flex-service@0.1.1 +npm:barebones-css@1.1.3 +npm:barebones-css@1.1.4 +npm:benmostyn-frame-print@1.0.1 +npm:best_gpio_controller@1.0.10 +npm:better-auth-nuxt@0.0.10 +npm:better-queue-nedb@0.1.5 +npm:bidirectional-adapter@1.2.2 +npm:bidirectional-adapter@1.2.3 +npm:bidirectional-adapter@1.2.4 +npm:bidirectional-adapter@1.2.5 +npm:blinqio-executions-cli@1.0.41 +npm:blob-to-base64@1.0.3 +npm:bool-expressions@0.1.2 +npm:buffered-interpolation-babylon6@0.2.8 +npm:bun-plugin-httpfile@0.1.1 +npm:bytecode-checker-cli@1.0.10 +npm:bytecode-checker-cli@1.0.11 +npm:bytecode-checker-cli@1.0.8 +npm:bytecode-checker-cli@1.0.9 +npm:bytes-to-x@1.0.1 +npm:calc-loan-interest@1.0.4 +npm:capacitor-plugin-apptrackingios@0.0.21 +npm:capacitor-plugin-purchase@0.1.1 +npm:capacitor-plugin-scgssigninwithgoogle@0.0.5 +npm:capacitor-purchase-history@0.0.10 +npm:capacitor-voice-recorder-wav@6.0.3 +npm:ceviz@0.0.5 +npm:chrome-extension-downloads@0.0.3 +npm:chrome-extension-downloads@0.0.4 +npm:claude-token-updater@1.0.3 +npm:coinmarketcap-api@3.1.2 +npm:coinmarketcap-api@3.1.3 +npm:colors-regex@2.0.1 +npm:command-irail@0.5.4 +npm:compare-obj@1.1.1 +npm:compare-obj@1.1.2 +npm:composite-reducer@1.0.2 +npm:composite-reducer@1.0.3 +npm:composite-reducer@1.0.4 +npm:composite-reducer@1.0.5 +npm:count-it-down@1.0.1 +npm:count-it-down@1.0.2 +npm:cpu-instructions@0.0.14 +npm:create-director-app@0.1.1 +npm:create-glee-app@0.2.2 +npm:create-glee-app@0.2.3 +npm:create-hardhat3-app@1.1.1 +npm:create-hardhat3-app@1.1.2 +npm:create-hardhat3-app@1.1.3 +npm:create-hardhat3-app@1.1.4 +npm:create-kinvey-flex-service@0.2.1 +npm:create-mcp-use-app@0.5.3 +npm:create-mcp-use-app@0.5.4 +npm:create-silgi@0.3.1 +npm:crypto-addr-codec@0.1.9 +npm:css-dedoupe@0.1.2 +npm:csv-tool-cli@1.2.1 +npm:dashboard-empty-state@1.0.3 +npm:designstudiouiux@1.0.1 +npm:devstart-cli@1.0.6 +npm:dialogflow-es@1.1.1 +npm:dialogflow-es@1.1.2 +npm:dialogflow-es@1.1.3 +npm:dialogflow-es@1.1.4 +npm:discord-bot-server@0.1.2 +npm:docusaurus-plugin-vanilla-extract@1.0.3 +npm:dont-go@1.1.2 +npm:dotnet-template@0.0.3 +npm:dotnet-template@0.0.4 +npm:drop-events-on-property-plugin@0.0.2 +npm:easypanel-sdk@0.3.2 +npm:electron-volt@0.0.2 +npm:email-deliverability-tester@1.1.1 +npm:enforce-branch-name@1.1.3 +npm:esbuild-plugin-brotli@0.2.1 +npm:esbuild-plugin-eta@0.1.1 +npm:esbuild-plugin-httpfile@0.4.1 +npm:eslint-config-kinvey-flex-service@0.1.1 +npm:eslint-config-nitpicky@4.0.1 +npm:eslint-config-trigo@22.0.2 +npm:eslint-config-zeallat-base@1.0.4 +npm:ethereum-ens@0.8.1 +npm:evm-checkcode-cli@1.0.12 +npm:evm-checkcode-cli@1.0.13 +npm:evm-checkcode-cli@1.0.14 +npm:evm-checkcode-cli@1.0.15 +npm:exact-ticker@0.3.5 +npm:expo-audio-session@0.2.1 +npm:expo-router-on-rails@0.0.4 +npm:express-starter-template@1.0.10 +npm:expressos@1.1.3 +npm:fat-fingered@1.0.1 +npm:fat-fingered@1.0.2 +npm:feature-flip@1.0.1 +npm:feature-flip@1.0.2 +npm:firestore-search-engine@1.2.3 +npm:fittxt@1.0.2 +npm:fittxt@1.0.3 +npm:flapstacks@1.0.1 +npm:flapstacks@1.0.2 +npm:flatten-unflatten@1.0.1 +npm:flatten-unflatten@1.0.2 +npm:formik-error-focus@2.0.1 +npm:formik-store@1.0.1 +npm:frontity-starter-theme@1.0.1 +npm:fuzzy-finder@1.0.5 +npm:fuzzy-finder@1.0.6 +npm:gate-evm-check-code2@2.0.3 +npm:gate-evm-check-code2@2.0.4 +npm:gate-evm-check-code2@2.0.5 +npm:gate-evm-check-code2@2.0.6 +npm:gate-evm-tools-test@1.0.5 +npm:gate-evm-tools-test@1.0.6 +npm:gate-evm-tools-test@1.0.7 +npm:gate-evm-tools-test@1.0.8 +npm:gatsby-plugin-antd@2.2.1 +npm:gatsby-plugin-cname@1.0.1 +npm:gatsby-plugin-cname@1.0.2 +npm:generator-meteor-stock@0.1.6 +npm:generator-ng-itobuz@0.0.15 +npm:get-them-args@1.3.3 +npm:github-action-for-generator@2.1.27 +npm:github-action-for-generator@2.1.28 +npm:gitsafe@1.0.5 +npm:go-template@0.1.8 +npm:go-template@0.1.9 +npm:gulp-inject-envs@1.2.1 +npm:gulp-inject-envs@1.2.2 +npm:haufe-axera-api-client@0.0.1 +npm:haufe-axera-api-client@0.0.2 +npm:hope-mapboxdraw@0.1.1 +npm:hopedraw@1.0.3 +npm:hover-design-prototype@0.0.5 +npm:httpness@1.0.2 +npm:httpness@1.0.3 +npm:hyper-fullfacing@1.0.3 +npm:hyperterm-hipster@1.0.7 +npm:ids-css@1.5.1 +npm:ids-enterprise-mcp-server@0.0.2 +npm:ids-enterprise-ng@20.1.6 +npm:ids-enterprise-typings@20.1.6 +npm:image-to-uri@1.0.1 +npm:image-to-uri@1.0.2 +npm:insomnia-plugin-random-pick@1.0.4 +npm:invo@0.2.2 +npm:iron-shield-miniapp@0.0.2 +npm:ito-button@8.0.3 +npm:itobuz-angular@0.0.1 +npm:itobuz-angular-auth@8.0.11 +npm:itobuz-angular-button@8.0.11 +npm:jacob-zuma@1.0.1 +npm:jacob-zuma@1.0.2 +npm:jaetut-varit-test@1.0.2 +npm:jan-browser@0.13.1 +npm:jquery-bindings@1.1.2 +npm:jquery-bindings@1.1.3 +npm:jsonsurge@1.0.7 +npm:just-toasty@1.7.1 +npm:kill-port@2.0.2 +npm:kill-port@2.0.3 +npm:kinetix-default-token-list@1.0.5 +npm:kinvey-cli-wrapper@0.3.1 +npm:kinvey-flex-scripts@0.5.1 +npm:kns-error-code@1.0.8 +npm:korea-administrative-area-geo-json-util@1.0.7 +npm:kwami@1.5.10 +npm:kwami@1.5.9 +npm:lang-codes@1.0.1 +npm:lang-codes@1.0.2 +npm:license-o-matic@1.2.1 +npm:license-o-matic@1.2.2 +npm:lint-staged-imagemin@1.3.1 +npm:lint-staged-imagemin@1.3.2 +npm:lite-serper-mcp-server@0.2.2 +npm:lui-vue-test@0.70.9 +npm:luno-api@1.2.3 +npm:m25-transaction-utils@1.1.16 +npm:manual-billing-system-miniapp-api@1.3.1 +npm:mcp-use@1.4.2 +npm:mcp-use@1.4.3 +npm:medusa-plugin-announcement@0.0.3 +npm:medusa-plugin-logs@0.0.17 +npm:medusa-plugin-momo@0.0.68 +npm:medusa-plugin-product-reviews-kvy@0.0.4 +npm:medusa-plugin-zalopay@0.0.40 +npm:mod10-check-digit@1.0.1 +npm:mon-package-react-typescript@1.0.1 +npm:my-saeed-lib@0.1.1 +npm:n8n-nodes-tmdb@0.5.1 +npm:n8n-nodes-vercel-ai-sdk@0.1.7 +npm:n8n-nodes-viral-app@0.2.5 +npm:nanoreset@7.0.1 +npm:nanoreset@7.0.2 +npm:next-circular-dependency@1.0.2 +npm:next-circular-dependency@1.0.3 +npm:next-simple-google-analytics@1.1.1 +npm:next-simple-google-analytics@1.1.2 +npm:next-styled-nprogress@1.0.4 +npm:next-styled-nprogress@1.0.5 +npm:ngx-useful-swiper-prosenjit@9.0.2 +npm:ngx-wooapi@12.0.1 +npm:nitro-graphql@1.5.12 +npm:nitro-kutu@0.1.1 +npm:nitrodeploy@1.0.8 +npm:nitroping@0.1.1 +npm:normal-store@1.3.1 +npm:normal-store@1.3.2 +npm:normal-store@1.3.3 +npm:normal-store@1.3.4 +npm:nuxt-keycloak@0.2.2 +npm:obj-to-css@1.0.2 +npm:obj-to-css@1.0.3 +npm:okta-react-router-6@5.0.1 +npm:open2internet@0.1.1 +npm:orbit-boxicons@2.1.3 +npm:orbit-nebula-draw-tools@1.0.10 +npm:orbit-nebula-editor@1.0.2 +npm:orbit-soap@0.43.13 +npm:orchestrix@12.1.2 +npm:package-tester@1.0.1 +npm:parcel-plugin-asset-copier@1.1.2 +npm:parcel-plugin-asset-copier@1.1.3 +npm:pdf-annotation@0.0.2 +npm:pergel@0.13.2 +npm:pergeltest@0.0.25 +npm:piclite@1.0.1 +npm:pico-uid@1.0.3 +npm:pico-uid@1.0.4 +npm:pkg-readme@1.1.1 +npm:poper-react-sdk@0.1.2 +npm:posthog-docusaurus@2.0.6 +npm:posthog-js@1.297.3 +npm:posthog-node@4.18.1 +npm:posthog-node@5.11.3 +npm:posthog-node@5.13.3 +npm:posthog-plugin-hello-world@1.0.1 +npm:posthog-react-native@4.11.1 +npm:posthog-react-native@4.12.5 +npm:posthog-react-native-session-replay@1.2.2 +npm:prime-one-table@0.0.19 +npm:prompt-eng@1.0.50 +npm:prompt-eng-server@1.0.18 +npm:puny-req@1.0.3 +npm:quickswap-ads-list@1.0.33 +npm:quickswap-default-staking-list@1.0.11 +npm:quickswap-default-staking-list-address@1.0.55 +npm:quickswap-default-token-list@1.5.16 +npm:quickswap-router-sdk@1.0.1 +npm:quickswap-sdk@3.0.44 +npm:quickswap-smart-order-router@1.0.1 +npm:quickswap-token-lists@1.0.3 +npm:quickswap-v2-sdk@2.0.1 +npm:ra-auth-firebase@1.0.3 +npm:ra-data-firebase@1.0.7 +npm:ra-data-firebase@1.0.8 +npm:react-component-taggers@0.1.9 +npm:react-data-to-export@1.0.1 +npm:react-element-prompt-inspector@0.1.18 +npm:react-favic@1.0.2 +npm:react-hook-form-persist@3.0.1 +npm:react-hook-form-persist@3.0.2 +npm:react-jam-icons@1.0.1 +npm:react-jam-icons@1.0.2 +npm:react-keycloak-context@1.0.8 +npm:react-keycloak-context@1.0.9 +npm:react-library-setup@0.0.6 +npm:react-linear-loader@1.0.2 +npm:react-micromodal.js@1.0.1 +npm:react-micromodal.js@1.0.2 +npm:react-native-datepicker-modal@1.3.1 +npm:react-native-datepicker-modal@1.3.2 +npm:react-native-email@2.1.1 +npm:react-native-email@2.1.2 +npm:react-native-fetch@2.0.1 +npm:react-native-fetch@2.0.2 +npm:react-native-get-pixel-dimensions@1.0.1 +npm:react-native-get-pixel-dimensions@1.0.2 +npm:react-native-google-maps-directions@2.1.2 +npm:react-native-jam-icons@1.0.1 +npm:react-native-jam-icons@1.0.2 +npm:react-native-log-level@1.2.1 +npm:react-native-log-level@1.2.2 +npm:react-native-modest-checkbox@3.3.1 +npm:react-native-modest-storage@2.1.1 +npm:react-native-phone-call@1.2.1 +npm:react-native-phone-call@1.2.2 +npm:react-native-retriable-fetch@2.0.1 +npm:react-native-retriable-fetch@2.0.2 +npm:react-native-use-modal@1.0.3 +npm:react-native-view-finder@1.2.1 +npm:react-native-view-finder@1.2.2 +npm:react-native-websocket@1.0.3 +npm:react-native-websocket@1.0.4 +npm:react-native-worklet-functions@3.3.3 +npm:react-packery-component@1.0.3 +npm:react-qr-image@1.1.1 +npm:react-scrambled-text@1.0.4 +npm:rediff@1.0.5 +npm:rediff-viewer@0.0.7 +npm:redux-forge@2.5.3 +npm:redux-router-kit@1.2.2 +npm:redux-router-kit@1.2.3 +npm:redux-router-kit@1.2.4 +npm:revenuecat@1.0.1 +npm:rollup-plugin-httpfile@0.2.1 +npm:sa-company-registration-number-regex@1.0.1 +npm:sa-company-registration-number-regex@1.0.2 +npm:sa-id-gen@1.0.4 +npm:sa-id-gen@1.0.5 +npm:samesame@1.0.3 +npm:scgs-capacitor-subscribe@1.0.11 +npm:scgsffcreator@1.0.5 +npm:schob@1.0.3 +npm:selenium-session@1.0.5 +npm:selenium-session-client@1.0.4 +npm:set-nested-prop@2.0.1 +npm:set-nested-prop@2.0.2 +npm:shelf-jwt-sessions@0.1.2 +npm:shell-exec@1.1.3 +npm:shell-exec@1.1.4 +npm:shinhan-limit-scrap@1.0.3 +npm:silgi@0.43.30 +npm:simplejsonform@1.0.1 +npm:skills-use@0.1.1 +npm:skills-use@0.1.2 +npm:solomon-api-stories@1.0.2 +npm:solomon-v3-stories@1.15.6 +npm:solomon-v3-ui-wrapper@1.6.1 +npm:soneium-acs@1.0.1 +npm:sort-by-distance@2.0.1 +npm:south-african-id-info@1.0.2 +npm:stat-fns@1.0.1 +npm:stoor@2.3.2 +npm:sufetch@0.4.1 +npm:super-commit@1.0.1 +npm:svelte-autocomplete-select@1.1.1 +npm:svelte-toasty@1.1.2 +npm:svelte-toasty@1.1.3 +npm:tanstack-shadcn-table@1.1.5 +npm:tavily-module@1.0.1 +npm:tcsp@2.0.2 +npm:tcsp-draw-test@1.0.5 +npm:tcsp-test-vd@2.4.4 +npm:template-lib@1.1.3 +npm:template-lib@1.1.4 +npm:template-micro-service@1.0.2 +npm:template-micro-service@1.0.3 +npm:tenacious-fetch@2.3.2 +npm:tenacious-fetch@2.3.3 +npm:test-foundry-app@1.0.1 +npm:test-foundry-app@1.0.2 +npm:test-foundry-app@1.0.3 +npm:test-foundry-app@1.0.4 +npm:test-hardhat-app@1.0.1 +npm:test-hardhat-app@1.0.2 +npm:test-hardhat-app@1.0.3 +npm:test-hardhat-app@1.0.4 +npm:test23112222-api@1.0.1 +npm:tiaan@1.0.2 +npm:tiptap-shadcn-vue@0.2.1 +npm:token.js-fork@0.7.32 +npm:toonfetch@0.3.2 +npm:trigo-react-app@4.1.2 +npm:ts-relay-cursor-paging@2.1.1 +npm:typeface-antonio-complete@1.0.5 +npm:typefence@1.2.2 +npm:typefence@1.2.3 +npm:typeorm-orbit@0.2.27 +npm:unadapter@0.1.3 +npm:undefsafe-typed@1.0.3 +npm:undefsafe-typed@1.0.4 +npm:unemail@0.3.1 +npm:uniswap-router-sdk@1.6.2 +npm:uniswap-smart-order-router@3.16.26 +npm:uniswap-test-sdk-core@4.0.8 +npm:unsearch@0.0.3 +npm:uplandui@0.5.4 +npm:upload-to-play-store@1.0.1 +npm:upload-to-play-store@1.0.2 +npm:url-encode-decode@1.0.1 +npm:url-encode-decode@1.0.2 +npm:use-unsaved-changes@1.0.9 +npm:v-plausible@1.2.1 +npm:valid-south-african-id@1.0.3 +npm:valuedex-sdk@3.0.5 +npm:vf-oss-template@1.0.1 +npm:vf-oss-template@1.0.2 +npm:vf-oss-template@1.0.3 +npm:vf-oss-template@1.0.4 +npm:victoria-wallet-constants@0.1.1 +npm:victoria-wallet-constants@0.1.2 +npm:victoria-wallet-core@0.1.1 +npm:victoria-wallet-core@0.1.2 +npm:victoria-wallet-type@0.1.1 +npm:victoria-wallet-type@0.1.2 +npm:victoria-wallet-utils@0.1.1 +npm:victoria-wallet-utils@0.1.2 +npm:victoria-wallet-validator@0.1.1 +npm:victoria-wallet-validator@0.1.2 +npm:victoriaxoaquyet-wallet-core@0.2.1 +npm:victoriaxoaquyet-wallet-core@0.2.2 +npm:vite-plugin-httpfile@0.2.1 +npm:vue-browserupdate-nuxt@1.0.5 +npm:wallet-evm@0.3.1 +npm:wallet-evm@0.3.2 +npm:wallet-type@0.1.1 +npm:wallet-type@0.1.2 +npm:web-scraper-mcp@1.1.4 +npm:web-types-htmx@0.1.1 +npm:web-types-lit@0.1.1 +npm:webpack-loader-httpfile@0.2.1 +npm:wellness-expert-ng-gallery@5.1.1 +npm:wenk@1.0.10 +npm:wenk@1.0.9 +npm:zapier-async-storage@1.0.1 +npm:zapier-async-storage@1.0.2 +npm:zapier-async-storage@1.0.3 +npm:zapier-platform-cli@18.0.2 +npm:zapier-platform-cli@18.0.3 +npm:zapier-platform-cli@18.0.4 +npm:zapier-platform-core@18.0.2 +npm:zapier-platform-core@18.0.3 +npm:zapier-platform-core@18.0.4 +npm:zapier-platform-legacy-scripting-runner@4.0.2 +npm:zapier-platform-legacy-scripting-runner@4.0.3 +npm:zapier-platform-legacy-scripting-runner@4.0.4 +npm:zapier-platform-schema@18.0.2 +npm:zapier-platform-schema@18.0.3 +npm:zapier-platform-schema@18.0.4 +npm:zapier-scripts@7.8.3 +npm:zapier-scripts@7.8.4 +npm:zuper-cli@1.0.1 +npm:zuper-sdk@1.0.57 +npm:zuper-stream@2.0.9