A Data-Driven Analysis of the Sha1-Hulud 2.0 Campaign
Panther Threat Research Team
Nov 25, 2025
Executive Summary
At Panther, we have been following supply-chain-related threats closely and are exploring new research avenues. We have built our own in-house automated NPM scanner to analyze newly published packages with suspicious patterns. We are proud to share that, in the span of two weeks, it is already surfacing very interesting data on data wipers, information stealers, and other supply chain attacks. One of the reasons why NPM scanning has been working so well for our internal research is that Panther’s data lake and AI capabilities allow us to analyze, triage, and summarize findings related to our custom NPM scan results.
In this post, we analyze the Shai Hulud 2.0 campaign, which has affected hundreds of NPM packages. Our analysis is supported by the treasure trove of data we’ve collected on this campaign, and we are making it public in the hope that this can help affected or concerned organizations understand how supply chain threats occur and what they can do to prevent them.
On November 24th, our scanner identified 746 unique packages and 942 versions over a 14-hour period that contained the malicious preinstall script identified by Aikido’s security team. Using our custom NPM scanner data alongside Panther’s triage and analysis tools, we have independently corroborated Aikido’s findings.
We have pinpointed a potential cause for compromise of patient zero, asyncapi-bot, as we have found that async/api GitHub repositories contained a vulnerable GitHub Actions that could have allowed the attacker to exfiltrate read-write GITHUB_TOKENs and subsequently push malicious code to the repository and the NPM registry. At that point, any developer with publishing rights to their NPM registry running any of the compromised AsyncAPI packages ended up further spreading the Sha1-Hulud worm.
At the time of writing, we have pinpointed the last compromised package on Nov 24, 2025, 10:07 (UTC). Panther's real-time NPM scanning infrastructure provided complete visibility into the attack from patient zero through the current ongoing attack. Let’s dive into how we used Panther to detect and analyze this supply chain attack.
Overview
On November 24, 2025, Aikido published a report detailing a second wave of the Sha1-Hulud worm targeting high-profile NPM packages from major organizations, including PostHog, Zapier, AsyncAPI, Postman, BrowserBase, ENS Domains, and Voiceflow. Attackers were able to inject malicious preinstall scripts into widely used NPM packages that executed automatically during npm install, enabling credential theft and system compromise without user interaction through exfiltration to malicious GitHub repositories linked to the victim’s accounts.

These malicious repositories contain any secrets and tokens found after the worm runs and are later reused to spread the malicious code.
The following table summarizes our overall findings. The first compromised package was published at 3:10 UTC and analyzed by our scanner at 3:29 (~19 minutes between publication and detection). Overall, our scanner picked up 746 unique packages bearing the compromised js file “setup_bun.js” over a period of ~14 hours. The packages were published by 80 unique maintainers, indicating the number of developers being compromised by this campaign.
Metric | Value |
|---|---|
Total Packages | 746 |
Total Versions | 942 |
Unique Maintainers | 80 |
First Compromise | 2025-11-24 03:10:05.406 UTC |
Last Compromise | 2025-11-24 16:54:01.242 UTC |
First Detection | 2025-11-24 03:29:40.838 UTC |
Attack Duration | 13 hours, 44 minutes |
Detection Lag (Initial) | 19 minutes, 35 seconds |
Panther's scanner achieved sub-20-minute detection for the first compromise and 100% detection rate. All 949 compromised package versions were captured in our logs.

Patient Zero: AsyncAPI Compromise
Our findings corroborate Aikido’s findings. The first compromised package in our data was identified as @asyncapi/avro-schema-parser@3.0.25.
Field | Value |
|---|---|
Package |
|
Maintainer | asyncapi-bot |
Publish Time | 2025-11-24 03:10:05.406 UTC |
Scan Time | 2025-11-24 03:32:31.868 UTC |
Monthly Downloads | 643,637 |
Detection | Malicious |
It is possible this AsyncAPI package served as patient zero, followed by a cascade of 26 additional AsyncAPI packages within the first hour, all published by the same maintainer account.
Infection Vector: GitHub Action Compromise
We have found that the GitHub repository “asyncapi/cli” contained a vulnerable workflow “auto-changeset.yml”. This workflow has been removed at time of writing. The “Changeset Automation” workflow contained a pull_request_target workflow trigger. We have highlighted the dangers of utilizing this event trigger in our previous blog post, Detecting and Hunting for GitHub Action Compromise, especially when the workflow is set to run on externally controlled code from forks. This held true for the AsyncAPI-compromised workflow as well:
After this step is executed, the attacker's code from the fork is now on disk. Coupled with this other step:
Any modification to the ‘index.js’ file in the context of the checked-out fork can end up exfiltrating any secrets and tokens the workflow has access to. In this case, the workflow had access to GH_TOKEN.
This is nearly identical to the NX/S1ngularity repository compromise, in which the attacker was able to use the exfiltrated GITHUB_TOKEN to trigger a secondary workflow that had access to NPM publishing tokens. It is therefore possible that this has occurred in the context of AsyncAPI as well.
The compromised branch is still visible here:
https://github.com/asyncapi/cli/tree/2efa4dff59bc3d3cecdf897ccf178f99b115d63d
And the actual code used by the attacker to exfiltrate .git/config by modifying the file ‘index.js’ is visible here:

The same exploitation path has been reported for PostHog by Adnan Khan on X (formerly Twitter) in the PostHog/posthog repository workflow “auto-assign-reviewers.yml”, in this pull request.
Technical Analysis
Attack Chain

Our attack progression hypothesis is that several developers from affected organizations ran a compromised version of one or more AsyncAPI/PostHog packages, which led to the exfiltration of their secrets and tokens. Any exfiltrated token could have held publishing rights to NPM or write access to GitHub repositories that held CI/CD pipelines responsible for publishing to NPM, therefore cascading into a chain of compromised organizations’ legitimate packages:
This seems plausible given what we have read here from PostHog, though it does not confirm that the initial infection vector was any of the AsyncAPI-affected packages.
In their case, the PostHog/posthog repository contained another vulnerable workflow, now removed, that allowed attackers to exfiltrate secrets. It is therefore possible that a combination of both hypotheses is valid; a subset of developers were compromised by running infected packages, and a subset of organizations were compromised by having their vulnerable GitHub workflows exploited.
The PostHog compromise illustrates the velocity of this attack:
First package:
@posthog/web-dev-server@1.0.5at 04:08:49.122 UTCLast package:
posthog-node@6.8.0at 04:13:22.416 UTCDuration: 4 minutes, 33 seconds for 62 packages.
Detection Signature
All compromised packages contain the same malicious file “setup_bun.js” in their package.json, which forces the execution of a dropper file “bun_environment.js” upon installation. The second malicious JS file is heavily obfuscated and attempts to retrieve several cloud credentials.
It is therefore possible to use the associated filenames to run the following SQL query in your Panther instance:
The query will find any GitHub commits after November 24th, 3 AM (start of the attack wave according to our data), where files with the associated IoCs were added to the repository.
Another indication of compromise is the creation of repositories containing the description "Sha1-Hulud: The Second Coming." If any such repository is created, the account associated with the creation event has likely been compromised by the worm.
The following Python rule should help in detecting this event:
Panther customers can find the full rule and search definitions here. If any hits are found, you can use this runbook with Panther AI to help investigate and triage:
GitHub Action Compromise Detection
All the rules we highlighted in our previous blog post are valid for preventing and detecting the kind of GitHub Action compromise that triggered this supply chain attack, as they alert on several pull_request_target exploitation paths by correlating high-severity attack patterns, such as:
executing the pull_request_target workflow trigger in cross-fork PRs/workflows
executing the pull_request_target workflow trigger in combination with the checkout action
executing the pull_request_target workflow trigger with self-hosted runners
All of our GitHub detection rules are available here.
Recommendations
For Security Teams
Audit Dependencies: Check
package-lock.jsonfiles for affected packages.Rotate Credentials: Assume breach if any affected package was installed, and rotate NPM, cloud, and related tokens/keys.
Review CI/CD Logs: Check build systems for unauthorized activity or outbound connections.
Review newly created GitHub repositories: Check developer accounts for any suspicious repository creation that contains credential files.
For NPM Package Consumers
Lock Dependencies: Use
package-lock.jsonto prevent automatic, unwanted version updates.Verify Checksums: Enable
npm auditsignatures (when available).Use --ignore-scripts: Install with
npm install --ignore-scriptswhen possible, especially in environments where scripts are not required.Monitor Supply Chain: Deploy tools like Socket.dev or Snyk to check dependencies before installation.
Review Recent Updates: Check for unexpected version bumps in crucial dependencies.
Conclusion
The Sha1-Hulud NPM supply chain attack demonstrates the critical importance of real-time package scanning and security monitoring. Panther's in-house NPM Scanner detected all 746 compromised packages affecting 80 maintainer accounts with a sub-20-minute detection lag, providing deep visibility into affected packages and versions. We will continue to monitor our logs and update this article over the coming days to offer a comprehensive list of our findings.
Get threat research like this baked directly into your security tools. Request a demo to see how Panther automatically detects and analyzes attacks like these.
Appendix: List of Possible Affected Packages to Date
The table below details the possible affected packages. We have queried the scanned packages for the presence of the filename ‘setup_bun.js’ in any version published in the last 48 hours, which is indicative of compromise. We have analyzed a random subset of the found packages and confirmed they contain at the time of writing (or contained when the scanner analyzed them) the actual malicious file. If the package is using an identical filename in its preinstall script, it may result in false positives.
Publish Timestamp UTC | Package | Downloads Last Month |
2025-11-24 4:09:20 | posthog-js@1.297.3 | 10719999 |
2025-11-24 6:45:13 | @zapier/zapier-sdk@0.15.7 | 7342290 |
2025-11-24 6:00:24 | @zapier/zapier-sdk@0.15.6 | 7342290 |
2025-11-24 5:50:55 | @zapier/zapier-sdk@0.15.5 | 7342290 |
2025-11-24 4:09:14 | @posthog/core@1.5.6 | 7190440 |
2025-11-24 4:13:22 | posthog-node@4.18.1 | 6147952 |
2025-11-24 4:09:08 | posthog-node@5.13.3 | 6147952 |
2025-11-24 3:18:53 | @asyncapi/specs@6.9.1 | 5667564 |
2025-11-24 3:59:26 | @asyncapi/specs@6.8.3 | 5667564 |
2025-11-24 5:13:17 | @postman/tunnel-agent@0.6.7 | 5077038 |
2025-11-24 5:04:38 | @postman/tunnel-agent@0.6.5 | 5077038 |
2025-11-24 10:07:05 | get-them-args@1.3.3 | 3591109 |
2025-11-24 10:07:07 | shell-exec@1.1.3 | 3402278 |
2025-11-24 10:23:01 | shell-exec@1.1.4 | 3402278 |
2025-11-24 10:05:26 | kill-port@2.0.2 | 3315390 |
2025-11-24 10:20:07 | kill-port@2.0.3 | 3315390 |
2025-11-24 12:56:33 | @browserbasehq/stagehand@3.0.4 | 1866053 |
2025-11-24 3:11:06 | @asyncapi/parser@3.4.1 | 1804320 |
2025-11-24 3:59:29 | @asyncapi/parser@3.4.2 | 1804320 |
2025-11-24 4:10:52 | posthog-react-native@4.11.1 | 1382803 |
2025-11-24 3:10:08 | @asyncapi/openapi-schema-parser@3.0.25 | 678871 |
2025-11-24 3:58:38 | @asyncapi/openapi-schema-parser@3.0.26 | 678871 |
2025-11-24 3:58:38 | @asyncapi/avro-schema-parser@3.0.26 | 643637 |
2025-11-24 3:10:05 | @asyncapi/avro-schema-parser@3.0.25 | 643637 |
2025-11-24 3:21:27 | @asyncapi/protobuf-schema-parser@3.5.2 | 555308 |
2025-11-24 3:58:44 | @asyncapi/protobuf-schema-parser@3.5.3 | 555308 |
2025-11-24 3:10:59 | @asyncapi/react-component@2.6.6 | 510370 |
2025-11-24 3:59:21 | @asyncapi/react-component@2.6.7 | 510370 |
2025-11-24 3:10:59 | @asyncapi/generator@2.8.5 | 324188 |
2025-11-24 3:59:23 | @asyncapi/generator@2.8.6 | 324188 |
2025-11-24 4:09:05 | @posthog/ai@7.1.2 | 288607 |
2025-11-24 3:10:42 | @asyncapi/generator-react-sdk@1.1.4 | 268700 |
2025-11-24 3:59:06 | @asyncapi/generator-react-sdk@1.1.5 | 268700 |
2025-11-24 5:13:20 | @postman/csv-parse@4.0.5 | 237618 |
2025-11-24 5:04:42 | @postman/csv-parse@4.0.3 | 237618 |
2025-11-24 4:09:00 | posthog-react-native-session-replay@1.2.2 | 212238 |
2025-11-24 3:58:39 | @asyncapi/converter@1.6.4 | 203126 |
2025-11-24 3:10:14 | @asyncapi/converter@1.6.3 | 203126 |
2025-11-24 3:10:12 | @asyncapi/multi-parser@2.2.1 | 193512 |
2025-11-24 3:58:36 | @asyncapi/multi-parser@2.2.2 | 193512 |
2025-11-24 4:08:55 | @posthog/cli@0.5.15 | 191943 |
2025-11-24 5:50:52 | @zapier/secret-scrubber@1.1.3 | 174512 |
2025-11-24 6:00:19 | @zapier/secret-scrubber@1.1.4 | 174512 |
2025-11-24 6:45:10 | @zapier/secret-scrubber@1.1.5 | 174512 |
2025-11-24 6:45:12 | zapier-platform-schema@18.0.4 | 157271 |
2025-11-24 5:50:53 | zapier-platform-schema@18.0.2 | 157271 |
2025-11-24 6:00:21 | zapier-platform-schema@18.0.3 | 157271 |
2025-11-24 6:00:21 | zapier-platform-core@18.0.3 | 156453 |
2025-11-24 6:45:12 | zapier-platform-core@18.0.4 | 156453 |
2025-11-24 5:50:53 | zapier-platform-core@18.0.2 | 156453 |
2025-11-24 5:48:59 | @ensdomains/content-hash@3.0.1 | 143271 |
2025-11-24 5:49:04 | crypto-addr-codec@0.1.9 | 139347 |
2025-11-24 3:59:10 | @asyncapi/html-template@3.3.3 | 134908 |
2025-11-24 3:10:48 | @asyncapi/html-template@3.3.2 | 134908 |
2025-11-24 4:08:57 | @posthog/nextjs-config@1.5.1 | 128878 |
2025-11-24 3:58:39 | @asyncapi/bundler@0.6.6 | 127319 |
2025-11-24 3:10:13 | @asyncapi/bundler@0.6.5 | 127319 |
2025-11-24 3:58:36 | @asyncapi/nunjucks-filters@2.1.2 | 126081 |
2025-11-24 3:10:09 | @asyncapi/nunjucks-filters@2.1.1 | 126081 |
2025-11-24 5:49:09 | @ensdomains/ensjs@4.0.3 | 119653 |
2025-11-24 3:10:30 | @asyncapi/diff@0.5.1 | 119231 |
2025-11-24 3:58:52 | @asyncapi/diff@0.5.2 | 119231 |
2025-11-24 3:10:53 | @asyncapi/cli@4.1.2 | 118947 |
2025-11-24 3:59:17 | @asyncapi/cli@4.1.3 | 118947 |
2025-11-24 3:10:37 | @asyncapi/modelina-cli@5.10.2 | 115767 |
2025-11-24 3:59:00 | @asyncapi/modelina-cli@5.10.3 | 115767 |
2025-11-24 3:10:23 | @asyncapi/optimizer@1.0.5 | 114646 |
2025-11-24 3:58:45 | @asyncapi/optimizer@1.0.6 | 114646 |
2025-11-24 3:58:39 | @asyncapi/generator-components@0.3.3 | 86121 |
2025-11-24 3:10:16 | @asyncapi/generator-components@0.3.2 | 86121 |
2025-11-24 3:58:38 | @asyncapi/generator-helpers@0.2.2 | 82757 |
2025-11-24 3:10:11 | @asyncapi/generator-helpers@0.2.1 | 82757 |
2025-11-24 6:45:13 | zapier-platform-cli@18.0.4 | 81302 |
2025-11-24 6:00:22 | zapier-platform-cli@18.0.3 | 81302 |
2025-11-24 5:50:54 | zapier-platform-cli@18.0.2 | 81302 |
2025-11-24 10:23:25 | react-hook-form-persist@3.0.2 | 73969 |
2025-11-24 10:06:25 | react-hook-form-persist@3.0.1 | 73969 |
2025-11-24 5:49:00 | ethereum-ens@0.8.1 | 48506 |
2025-11-24 3:58:43 | @asyncapi/problem@1.0.2 | 45798 |
2025-11-24 3:10:18 | @asyncapi/problem@1.0.1 | 45798 |
2025-11-24 10:04:50 | formik-error-focus@2.0.1 | 40731 |
2025-11-24 4:09:02 | @posthog/icons@0.36.1 | 39570 |
2025-11-24 4:09:09 | @posthog/rrweb@0.0.31 | 33869 |
2025-11-24 4:09:01 | @posthog/rrweb-snapshot@0.0.31 | 33797 |
2025-11-24 4:08:55 | @posthog/rrweb-utils@0.0.31 | 33780 |
2025-11-24 4:09:01 | @posthog/rrdom@0.0.31 | 33757 |
2025-11-24 5:48:52 | @ensdomains/eth-ens-namehash@2.0.16 | 33281 |
2025-11-24 4:08:50 | posthog-docusaurus@2.0.6 | 32996 |
2025-11-24 4:08:56 | @posthog/lemon-ui@0.0.1 | 32823 |
2025-11-24 9:33:49 | @dev-blinq/cucumber_client@1.0.738 | 30484 |
2025-11-24 5:13:19 | @postman/secret-scanner-wasm@2.1.4 | 28945 |
2025-11-24 5:10:23 | @postman/secret-scanner-wasm@2.1.3 | 28945 |
2025-11-24 5:04:41 | @postman/secret-scanner-wasm@2.1.2 | 28945 |
2025-11-24 9:33:50 | @dev-blinq/cucumber-js@1.0.131 | 24498 |
2025-11-24 9:33:48 | automation_model@1.0.491 | 23738 |
2025-11-24 10:18:35 | @accordproject/concerto-metamodel@3.12.5 | 21892 |
2025-11-24 11:20:26 | @voiceflow/base-types@2.136.3 | 20043 |
2025-11-24 10:05:08 | react-native-phone-call@1.2.1 | 18264 |
2025-11-24 10:23:31 | react-native-phone-call@1.2.2 | 18264 |
2025-11-24 5:13:18 | @postman/pretty-ms@6.1.3 | 17542 |
2025-11-24 5:04:38 | @postman/pretty-ms@6.1.1 | 17542 |
2025-11-24 5:10:20 | @postman/pretty-ms@6.1.2 | 17542 |
2025-11-24 11:20:24 | @voiceflow/dtos-interact@1.40.2 | 17214 |
2025-11-24 10:06:48 | colors-regex@2.0.1 | 16875 |
2025-11-24 5:49:00 | @ensdomains/buffer@0.1.2 | 16697 |
2025-11-24 5:49:01 | @ensdomains/dnsprovejs@0.5.3 | 15568 |
2025-11-24 4:08:56 | @posthog/react-rrweb-player@1.1.4 | 15426 |
2025-11-24 10:05:27 | next-circular-dependency@1.0.2 | 14640 |
2025-11-24 10:22:56 | next-circular-dependency@1.0.3 | 14640 |
2025-11-24 5:04:38 | @postman/node-keytar@7.9.4 | 14344 |
2025-11-24 5:13:19 | @postman/node-keytar@7.9.6 | 14344 |
2025-11-24 5:43:12 | web-types-lit@0.1.1 | 13991 |
2025-11-24 15:29:42 | @trackstar/react-trackstar-link@2.0.21 | 13744 |
2025-11-24 5:48:59 | @ensdomains/solsha1@0.0.4 | 12935 |
2025-11-24 11:20:15 | @voiceflow/fetch@1.11.2 | 12830 |
2025-11-24 10:06:59 | enforce-branch-name@1.1.3 | 12771 |
2025-11-24 11:20:23 | @voiceflow/voiceflow-types@3.32.46 | 12264 |
2025-11-24 11:20:17 | @voiceflow/voice-types@2.10.59 | 12194 |
2025-11-24 11:20:17 | @voiceflow/chat-types@2.14.59 | 12087 |
2025-11-24 6:00:18 | @zapier/spectral-api-ruleset@1.9.2 | 11987 |
2025-11-24 5:50:53 | @zapier/spectral-api-ruleset@1.9.1 | 11987 |
2025-11-24 6:45:10 | @zapier/spectral-api-ruleset@1.9.3 | 11987 |
2025-11-24 4:08:59 | @posthog/clickhouse@1.7.1 | 11962 |
2025-11-24 7:09:32 | mcp-use@1.4.3 | 11814 |
2025-11-24 6:45:49 | mcp-use@1.4.2 | 11814 |
2025-11-24 14:01:19 | ids-enterprise-ng@20.1.6 | 11089 |
2025-11-24 11:20:21 | @voiceflow/common@8.9.2 | 11080 |
2025-11-24 4:08:55 | @posthog/siphash@1.1.2 | 10364 |
2025-11-24 14:01:19 | ids-enterprise-typings@20.1.6 | 9963 |
2025-11-24 11:20:16 | @voiceflow/logger@2.4.3 | 9748 |
2025-11-24 4:09:07 | @posthog/rrweb-record@0.0.31 | 9534 |
2025-11-24 3:59:02 | @asyncapi/web-component@2.6.7 | 9084 |
2025-11-24 3:10:47 | @asyncapi/web-component@2.6.6 | 9084 |
2025-11-24 11:20:19 | @voiceflow/api-sdk@3.28.59 | 8878 |
2025-11-24 15:32:59 | gatsby-plugin-antd@2.2.1 | 8765 |
2025-11-24 4:08:56 | @posthog/geoip-plugin@0.0.8 | 8757 |
2025-11-24 11:20:05 | @voiceflow/verror@1.1.5 | 8713 |
2025-11-24 6:45:50 | @mcp-use/inspector@0.6.2 | 8681 |
2025-11-24 7:09:31 | @mcp-use/inspector@0.6.3 | 8681 |
2025-11-24 5:13:24 | @postman/postman-mcp-server@2.4.12 | 8507 |
2025-11-24 5:04:46 | @postman/postman-mcp-server@2.4.10 | 8507 |
2025-11-24 11:20:17 | @voiceflow/exception@1.10.2 | 8390 |
2025-11-24 11:20:25 | @voiceflow/nestjs-common@2.75.3 | 8386 |
2025-11-24 4:09:15 | @posthog/wizard@1.18.1 | 8313 |
2025-11-24 6:45:49 | @mcp-use/cli@2.2.6 | 8311 |
2025-11-24 7:09:28 | @mcp-use/cli@2.2.7 | 8311 |
2025-11-24 10:20:09 | react-native-websocket@1.0.4 | 8151 |
2025-11-24 10:05:31 | react-native-websocket@1.0.3 | 8151 |
2025-11-24 6:00:17 | @zapier/browserslist-config-zapier@1.0.4 | 7837 |
2025-11-24 5:50:52 | @zapier/browserslist-config-zapier@1.0.3 | 7837 |
2025-11-24 6:45:10 | @zapier/browserslist-config-zapier@1.0.5 | 7837 |
2025-11-24 4:08:55 | @posthog/nuxt@1.2.9 | 7776 |
2025-11-24 16:44:23 | @productdevbook/chatwoot@2.0.1 | 7718 |
2025-11-24 4:08:56 | @posthog/plugin-contrib@0.0.6 | 7456 |
2025-11-24 11:20:20 | @voiceflow/utils-designer@1.74.20 | 7421 |
2025-11-24 3:26:27 | react-native-use-modal@1.0.3 | 7396 |
2025-11-24 4:09:06 | @posthog/piscina@3.2.1 | 7369 |
2025-11-24 5:49:01 | @ensdomains/ens-validation@0.1.1 | 7349 |
2025-11-24 4:09:16 | @posthog/agent@1.24.1 | 7276 |
2025-11-24 4:10:54 | @actbase/react-daum-postcode@1.0.5 | 6457 |
2025-11-24 10:05:16 | gatsby-plugin-cname@1.0.1 | 6443 |
2025-11-24 10:19:29 | gatsby-plugin-cname@1.0.2 | 6443 |
2025-11-24 12:56:48 | @browserbasehq/mcp-server-browserbase@2.4.2 | 6112 |
2025-11-24 11:20:20 | @voiceflow/alexa-types@2.15.61 | 5602 |
2025-11-24 8:30:29 | orchestrix@12.1.2 | 5524 |
2025-11-24 11:20:23 | @voiceflow/google-types@2.21.13 | 5467 |
2025-11-24 10:04:37 | react-native-email@2.1.1 | 5434 |
2025-11-24 10:19:56 | react-native-email@2.1.2 | 5434 |
2025-11-24 11:20:17 | @voiceflow/general-types@3.2.23 | 5351 |
2025-11-24 11:20:10 | @voiceflow/eslint-config@7.16.5 | 5277 |
2025-11-24 10:12:32 | undefsafe-typed@1.0.3 | 5244 |
2025-11-24 10:16:38 | undefsafe-typed@1.0.4 | 5244 |
2025-11-24 11:20:21 | @voiceflow/sdk-runtime@1.43.2 | 5241 |
2025-11-24 11:28:17 | bidirectional-adapter@1.2.3 | 5222 |
2025-11-24 11:19:51 | bidirectional-adapter@1.2.2 | 5222 |
2025-11-24 13:10:04 | bidirectional-adapter@1.2.5 | 5222 |
2025-11-24 12:09:37 | bidirectional-adapter@1.2.4 | 5222 |
2025-11-24 11:20:14 | @voiceflow/slate-serializer@1.7.4 | 5162 |
2025-11-24 10:05:32 | sort-by-distance@2.0.1 | 4985 |
2025-11-24 7:33:01 | token.js-fork@0.7.32 | 4772 |
2025-11-24 11:20:05 | @voiceflow/prettier-config@1.10.2 | 4634 |
2025-11-24 11:20:06 | @voiceflow/commitlint-config@2.6.2 | 4488 |
2025-11-24 11:20:03 | @voiceflow/git-branch-check@1.4.4 | 4364 |
2025-11-24 10:16:41 | @everreal/web-analytics@0.0.2 | 4316 |
2025-11-24 10:24:14 | @accordproject/markdown-it-cicero@0.16.26 | 3979 |
2025-11-24 11:20:10 | @voiceflow/pino-pretty@4.4.2 | 3747 |
2025-11-24 11:20:13 | @voiceflow/backend-utils@5.0.2 | 3727 |
2025-11-24 16:44:15 | nitro-graphql@1.5.12 | 3677 |
2025-11-24 5:48:57 | @ensdomains/dnssecoraclejs@0.2.9 | 3589 |
2025-11-24 10:05:00 | react-native-modest-storage@2.1.1 | 3363 |
2025-11-24 16:51:33 | quickswap-sdk@3.0.44 | 3247 |
2025-11-24 16:44:08 | avvvatars-vue@1.1.2 | 3210 |
2025-11-24 10:06:09 | mod10-check-digit@1.0.1 | 3126 |
2025-11-24 16:51:27 | quickswap-default-token-list@1.5.16 | 3071 |
2025-11-24 10:20:08 | compare-obj@1.1.2 | 2863 |
2025-11-24 10:06:38 | compare-obj@1.1.1 | 2863 |
2025-11-24 10:23:23 | url-encode-decode@1.0.2 | 2834 |
2025-11-24 10:04:42 | url-encode-decode@1.0.1 | 2834 |
2025-11-24 11:28:17 | normal-store@1.3.2 | 2815 |
2025-11-24 13:10:04 | normal-store@1.3.4 | 2815 |
2025-11-24 11:19:51 | normal-store@1.3.1 | 2815 |
2025-11-24 12:09:38 | normal-store@1.3.3 | 2815 |
2025-11-24 5:05:26 | @postman/pm-bin-linux-x64@1.24.3 | 2808 |
2025-11-24 5:14:01 | @postman/pm-bin-linux-x64@1.24.5 | 2808 |
2025-11-24 11:20:22 | @voiceflow/runtime@1.29.2 | 2749 |
2025-11-24 4:09:11 | @posthog/hedgehog-mode@0.0.42 | 2630 |
2025-11-24 10:06:19 | blob-to-base64@1.0.3 | 2621 |
2025-11-24 10:04:39 | react-native-google-maps-directions@2.1.2 | 2607 |
2025-11-24 16:44:32 | v-plausible@1.2.1 | 2435 |
2025-11-24 5:05:18 | @postman/pm-bin-windows-x64@1.24.3 | 2393 |
2025-11-24 5:13:53 | @postman/pm-bin-windows-x64@1.24.5 | 2393 |
2025-11-24 7:09:28 | create-mcp-use-app@0.5.4 | 2358 |
2025-11-24 6:45:49 | create-mcp-use-app@0.5.3 | 2358 |
2025-11-24 10:05:53 | bytes-to-x@1.0.1 | 2313 |
2025-11-24 11:20:13 | @voiceflow/test-common@2.1.2 | 2254 |
2025-11-24 5:48:58 | @ensdomains/ens-avatar@1.0.4 | 2205 |
2025-11-24 16:44:57 | @oku-ui/motion@0.4.4 | 2144 |
2025-11-24 9:33:47 | @dev-blinq/ui-systems@1.0.93 | 2118 |
2025-11-24 12:56:39 | @browserbasehq/mcp@2.1.1 | 2071 |
2025-11-24 5:13:58 | @postman/pm-bin-macos-arm64@1.24.5 | 1892 |
2025-11-24 5:05:22 | @postman/pm-bin-macos-arm64@1.24.3 | 1892 |
2025-11-24 10:05:45 | image-to-uri@1.0.1 | 1868 |
2025-11-24 10:23:11 | image-to-uri@1.0.2 | 1868 |
2025-11-24 11:20:24 | @voiceflow/react-chat@1.65.4 | 1827 |
2025-11-24 7:41:26 | react-component-taggers@0.1.9 | 1773 |
2025-11-24 11:20:10 | @voiceflow/stitches-react@2.3.3 | 1683 |
2025-11-24 10:27:23 | @accordproject/concerto-analysis@3.24.1 | 1671 |
2025-11-24 11:28:13 | composite-reducer@1.0.3 | 1644 |
2025-11-24 12:09:33 | composite-reducer@1.0.4 | 1644 |
2025-11-24 11:19:50 | composite-reducer@1.0.2 | 1644 |
2025-11-24 13:09:58 | composite-reducer@1.0.5 | 1644 |
2025-11-24 11:20:10 | @voiceflow/default-prompt-wrappers@1.7.4 | 1627 |
2025-11-24 5:05:24 | @postman/pm-bin-macos-x64@1.24.3 | 1625 |
2025-11-24 5:13:59 | @postman/pm-bin-macos-x64@1.24.5 | 1625 |
2025-11-24 3:26:30 | @quick-start-soft/quick-task-refine@1.4.2511142126 | 1537 |
2025-11-24 3:26:31 | @quick-start-soft/quick-remove-image-background@1.4.2511142126 | 1535 |
2025-11-24 3:26:32 | @quick-start-soft/quick-git-clean-markdown@1.4.2511142126 | 1533 |
2025-11-24 4:08:49 | @posthog/nextjs@0.0.3 | 1532 |
2025-11-24 3:26:31 | @quick-start-soft/quick-markdown@1.4.2511142126 | 1526 |
2025-11-24 3:26:31 | @quick-start-soft/quick-markdown-print@1.4.2511142126 | 1518 |
2025-11-24 10:07:06 | template-lib@1.1.3 | 1487 |
2025-11-24 10:23:34 | template-lib@1.1.4 | 1487 |
2025-11-24 3:26:31 | @quick-start-soft/quick-document-translator@1.4.2511142126 | 1482 |
2025-11-24 3:26:31 | @quick-start-soft/quick-markdown-image@1.4.2511142126 | 1465 |
2025-11-24 8:30:23 | 02-echo@0.0.7 | 1460 |
2025-11-24 10:06:40 | react-native-get-pixel-dimensions@1.0.1 | 1401 |
2025-11-24 10:23:18 | react-native-get-pixel-dimensions@1.0.2 | 1401 |
2025-11-24 5:49:02 | @ensdomains/dnssec-oracle-anchors@0.0.2 | 1297 |
2025-11-24 5:49:01 | @ensdomains/mock@2.1.52 | 1252 |
2025-11-24 11:20:03 | @voiceflow/husky-config@1.3.2 | 1205 |
2025-11-24 16:44:52 | unemail@0.3.1 | 1201 |
2025-11-24 10:05:42 | react-native-modest-checkbox@3.3.1 | 1201 |
2025-11-24 5:49:04 | @ensdomains/ui@3.4.6 | 1167 |
2025-11-24 10:06:22 | lang-codes@1.0.1 | 1166 |
2025-11-24 10:20:12 | lang-codes@1.0.2 | 1166 |
2025-11-24 10:07:01 | ra-data-firebase@1.0.7 | 1151 |
2025-11-24 10:23:38 | ra-data-firebase@1.0.8 | 1151 |
2025-11-24 10:19:54 | nanoreset@7.0.2 | 1135 |
2025-11-24 10:05:15 | nanoreset@7.0.1 | 1135 |
2025-11-24 5:50:53 | @zapier/babel-preset-zapier@6.4.1 | 1117 |
2025-11-24 6:45:10 | @zapier/babel-preset-zapier@6.4.3 | 1117 |
2025-11-24 6:00:17 | @zapier/babel-preset-zapier@6.4.2 | 1117 |
2025-11-24 16:45:03 | toonfetch@0.3.2 | 1114 |
2025-11-24 6:00:18 | zapier-platform-legacy-scripting-runner@4.0.3 | 1092 |
2025-11-24 6:45:10 | zapier-platform-legacy-scripting-runner@4.0.4 | 1092 |
2025-11-24 5:50:52 | zapier-platform-legacy-scripting-runner@4.0.2 | 1092 |
2025-11-24 8:43:13 | @alaan/s2s-auth@2.0.3 | 1074 |
2025-11-24 16:45:01 | @oku-ui/primitives@0.7.9 | 1065 |
2025-11-24 6:45:10 | @zapier/eslint-plugin-zapier@11.0.5 | 1062 |
2025-11-24 6:00:20 | @zapier/eslint-plugin-zapier@11.0.4 | 1062 |
2025-11-24 5:50:54 | @zapier/eslint-plugin-zapier@11.0.3 | 1062 |
2025-11-24 5:49:04 | @ensdomains/react-ens-address@0.0.32 | 1042 |
2025-11-24 11:20:09 | @voiceflow/vitest-config@1.10.3 | 1033 |
2025-11-24 10:23:38 | coinmarketcap-api@3.1.3 | 1012 |
2025-11-24 10:04:49 | coinmarketcap-api@3.1.2 | 1012 |
2025-11-24 10:12:33 | @everreal/validate-esmoduleinterop-imports@1.4.4 | 989 |
2025-11-24 10:16:41 | @everreal/validate-esmoduleinterop-imports@1.4.5 | 989 |
2025-11-24 5:49:06 | @ensdomains/hardhat-chai-matchers-viem@0.1.15 | 988 |
2025-11-24 5:04:43 | @postman/mcp-ui-client@5.5.1 | 907 |
2025-11-24 5:13:22 | @postman/mcp-ui-client@5.5.3 | 907 |
2025-11-24 11:20:16 | @voiceflow/pino@6.11.4 | 904 |
2025-11-24 11:20:05 | @voiceflow/tsconfig@1.12.2 | 891 |
2025-11-24 5:13:17 | @postman/postman-mcp-cli@1.0.5 | 884 |
2025-11-24 5:10:22 | @postman/postman-mcp-cli@1.0.4 | 884 |
2025-11-24 5:04:34 | @postman/postman-mcp-cli@1.0.3 | 884 |
2025-11-24 10:06:04 | react-qr-image@1.1.1 | 881 |
2025-11-24 10:23:08 | obj-to-css@1.0.3 | 849 |
2025-11-24 10:07:02 | obj-to-css@1.0.2 | 849 |
2025-11-24 5:50:53 | redux-router-kit@1.2.2 | 842 |
2025-11-24 6:45:12 | redux-router-kit@1.2.4 | 842 |
2025-11-24 6:00:21 | redux-router-kit@1.2.3 | 842 |
2025-11-24 16:41:16 | revenuecat@1.0.1 | 836 |
2025-11-24 16:45:00 | ceviz@0.0.5 | 825 |
2025-11-24 10:05:41 | tenacious-fetch@2.3.2 | 803 |
2025-11-24 10:23:22 | tenacious-fetch@2.3.3 | 803 |
2025-11-24 11:20:15 | @voiceflow/dependency-cruiser-config@1.8.12 | 799 |
2025-11-24 10:27:49 | @accordproject/concerto-types@3.24.1 | 743 |
2025-11-24 5:48:48 | @ensdomains/test-utils@1.3.1 | 722 |
2025-11-24 11:20:07 | @voiceflow/nestjs-timeout@1.3.2 | 715 |
2025-11-24 5:04:43 | @postman/postman-collection-fork@4.3.3 | 712 |
2025-11-24 5:13:22 | @postman/postman-collection-fork@4.3.5 | 712 |
2025-11-24 10:06:54 | next-styled-nprogress@1.0.4 | 703 |
2025-11-24 10:19:58 | next-styled-nprogress@1.0.5 | 703 |
2025-11-24 11:11:27 | ai-crowl-shield@1.0.7 | 693 |
2025-11-24 16:44:26 | @oku-ui/motion-nuxt@0.2.2 | 686 |
2025-11-24 11:20:15 | @voiceflow/tsconfig-paths@1.1.5 | 681 |
2025-11-24 11:20:06 | @voiceflow/npm-package-json-lint-config@1.1.2 | 678 |
2025-11-24 10:15:11 | kwami@1.5.9 | 660 |
2025-11-24 11:34:54 | kwami@1.5.10 | 660 |
2025-11-24 11:20:11 | @voiceflow/eslint-plugin@1.6.2 | 651 |
2025-11-24 14:01:18 | ids-css@1.5.1 | 640 |
2025-11-24 5:04:39 | @postman/wdio-allure-reporter@0.0.7 | 613 |
2025-11-24 5:13:19 | @postman/wdio-allure-reporter@0.0.9 | 613 |
2025-11-24 5:13:18 | @postman/wdio-junit-reporter@0.0.6 | 597 |
2025-11-24 5:04:38 | @postman/wdio-junit-reporter@0.0.4 | 597 |
2025-11-24 16:41:28 | nitrodeploy@1.0.8 | 573 |
2025-11-24 11:20:14 | @voiceflow/encryption@0.3.3 | 569 |
2025-11-24 11:20:10 | @voiceflow/metrics@1.5.2 | 567 |
2025-11-24 6:43:11 | devstart-cli@1.0.6 | 565 |
2025-11-24 11:20:10 | @voiceflow/nestjs-mongodb@1.3.2 | 562 |
2025-11-24 10:23:32 | react-native-log-level@1.2.2 | 552 |
2025-11-24 10:06:24 | react-native-log-level@1.2.1 | 552 |
2025-11-24 11:20:13 | @voiceflow/natural-language-commander@0.5.3 | 551 |
2025-11-24 5:49:02 | @ensdomains/offchain-resolver-contracts@0.2.2 | 543 |
2025-11-24 11:20:10 | @voiceflow/vite-config@2.6.3 | 533 |
2025-11-24 5:48:53 | @ensdomains/ens-test-env@1.0.2 | 521 |
2025-11-24 5:49:06 | @ensdomains/thorin@0.6.51 | 513 |
2025-11-24 5:04:38 | @postman/final-node-keytar@7.9.1 | 498 |
2025-11-24 5:10:23 | @postman/final-node-keytar@7.9.2 | 498 |
2025-11-24 5:13:18 | @postman/final-node-keytar@7.9.3 | 498 |
2025-11-24 10:05:32 | valid-south-african-id@1.0.3 | 497 |
2025-11-24 15:33:03 | @bdkinc/knex-ibmi@0.5.7 | 487 |
2025-11-24 6:23:26 | gate-evm-tools-test@1.0.6 | 480 |
2025-11-24 9:17:11 | gate-evm-tools-test@1.0.8 | 480 |
2025-11-24 6:46:01 | gate-evm-tools-test@1.0.7 | 480 |
2025-11-24 5:35:00 | gate-evm-tools-test@1.0.5 | 480 |
2025-11-24 11:20:08 | @voiceflow/circleci-config-sdk-orb-import@0.2.2 | 469 |
2025-11-24 16:44:45 | @lui-ui/lui-vue@1.0.13 | 467 |
2025-11-24 10:27:45 | @accordproject/template-engine@2.7.2 | 454 |
2025-11-24 5:48:51 | @ensdomains/vite-plugin-i18next-loader@4.0.4 | 446 |
2025-11-24 6:45:11 | zapier-scripts@7.8.4 | 444 |
2025-11-24 5:50:53 | zapier-scripts@7.8.3 | 444 |
2025-11-24 11:20:09 | @voiceflow/storybook-config@1.2.3 | 437 |
2025-11-24 6:00:18 | zapier-async-storage@1.0.2 | 436 |
2025-11-24 5:50:52 | zapier-async-storage@1.0.1 | 436 |
2025-11-24 6:45:10 | zapier-async-storage@1.0.3 | 436 |
2025-11-24 9:33:46 | @dev-blinq/blinqioclient@1.0.21 | 428 |
2025-11-24 9:33:47 | blinqio-executions-cli@1.0.41 | 420 |
2025-11-24 10:23:36 | wenk@1.0.10 | 411 |
2025-11-24 10:06:12 | wenk@1.0.9 | 411 |
2025-11-24 11:20:20 | @voiceflow/google-dfes-types@2.17.13 | 411 |
2025-11-24 5:43:12 | esbuild-plugin-eta@0.1.1 | 405 |
2025-11-24 15:33:00 | react-packery-component@1.0.3 | 390 |
2025-11-24 10:06:06 | css-dedoupe@0.1.2 | 373 |
2025-11-24 3:58:47 | @asyncapi/python-paho-template@0.2.15 | 372 |
2025-11-24 3:10:27 | @asyncapi/python-paho-template@0.2.14 | 372 |
2025-11-24 10:05:18 | axios-timed@1.0.1 | 369 |
2025-11-24 10:20:05 | axios-timed@1.0.2 | 369 |
2025-11-24 10:06:17 | parcel-plugin-asset-copier@1.1.2 | 358 |
2025-11-24 10:23:39 | parcel-plugin-asset-copier@1.1.3 | 358 |
2025-11-24 10:06:17 | @lessondesk/schoolbus@5.2.2 | 352 |
2025-11-24 10:23:37 | @lessondesk/schoolbus@5.2.3 | 352 |
2025-11-24 16:44:41 | silgi@0.43.30 | 349 |
2025-11-24 10:05:31 | ra-auth-firebase@1.0.3 | 344 |
2025-11-24 6:45:11 | @zapier/ai-actions@0.1.20 | 341 |
2025-11-24 4:09:09 | @posthog/rrweb-player@0.0.31 | 341 |
2025-11-24 6:00:18 | @zapier/ai-actions@0.1.19 | 341 |
2025-11-24 5:50:53 | @zapier/ai-actions@0.1.18 | 341 |
2025-11-24 12:56:37 | @browserbasehq/sdk-functions@0.0.4 | 321 |
2025-11-24 5:48:44 | @ensdomains/hardhat-toolbox-viem-extended@0.0.6 | 313 |
2025-11-24 9:12:46 | tanstack-shadcn-table@1.1.5 | 312 |
2025-11-24 10:07:02 | svelte-autocomplete-select@1.1.1 | 303 |
2025-11-24 10:19:42 | upload-to-play-store@1.0.2 | 298 |
2025-11-24 10:06:56 | upload-to-play-store@1.0.1 | 298 |
2025-11-24 11:34:54 | @alexcolls/nuxt-ux@0.6.2 | 293 |
2025-11-24 10:15:12 | @alexcolls/nuxt-ux@0.6.1 | 293 |
2025-11-24 6:45:12 | @zapier/mcp-integration@3.0.3 | 291 |
2025-11-24 5:50:54 | @zapier/mcp-integration@3.0.1 | 291 |
2025-11-24 6:00:22 | @zapier/mcp-integration@3.0.2 | 291 |
2025-11-24 5:48:59 | @ensdomains/ccip-read-cf-worker@0.0.4 | 286 |
2025-11-24 11:20:05 | @voiceflow/semantic-release-config@1.4.2 | 264 |
2025-11-24 16:44:52 | @oku-ui/slot@0.6.2 | 260 |
2025-11-24 6:45:15 | @zapier/ai-actions-react@0.1.14 | 256 |
2025-11-24 5:50:55 | @zapier/ai-actions-react@0.1.12 | 256 |
2025-11-24 6:00:26 | @zapier/ai-actions-react@0.1.13 | 256 |
2025-11-24 16:44:55 | @oku-ui/provide@0.6.2 | 255 |
2025-11-24 11:20:06 | @voiceflow/secrets-provider@1.9.3 | 249 |
2025-11-24 16:44:46 | @oku-ui/presence@0.6.2 | 241 |
2025-11-24 10:07:06 | count-it-down@1.0.1 | 239 |
2025-11-24 10:23:16 | count-it-down@1.0.2 | 239 |
2025-11-24 6:45:11 | @zapier/stubtree@0.1.4 | 233 |
2025-11-24 6:00:18 | @zapier/stubtree@0.1.3 | 233 |
2025-11-24 5:50:53 | @zapier/stubtree@0.1.2 | 233 |
2025-11-24 11:33:04 | n8n-nodes-viral-app@0.2.5 | 227 |
2025-11-24 10:23:27 | gulp-inject-envs@1.2.2 | 222 |
2025-11-24 10:05:42 | gulp-inject-envs@1.2.1 | 222 |
2025-11-24 16:45:00 | @oku-ui/use-composable@0.6.2 | 220 |
2025-11-24 16:44:15 | @oku-ui/primitive@0.6.2 | 220 |
2025-11-24 16:44:28 | @oku-ui/utils@0.6.2 | 218 |
2025-11-24 4:11:12 | @actbase/react-kakaosdk@0.9.27 | 217 |
2025-11-24 16:44:26 | @lui-ui/lui-tailwindcss@0.1.2 | 214 |
2025-11-24 10:27:40 | @accordproject/concerto-linter@3.24.1 | 201 |
2025-11-24 9:33:46 | prompt-eng@1.0.50 | 198 |
2025-11-24 16:44:11 | @oku-ui/direction@0.6.2 | 197 |
2025-11-24 10:21:56 | @accordproject/concerto-linter-default-ruleset@3.24.1 | 193 |
2025-11-24 12:56:36 | @browserbasehq/bb9@1.2.21 | 188 |
2025-11-24 7:51:21 | @trigo/keycloak-api@1.3.1 | 188 |
2025-11-24 10:04:51 | stat-fns@1.0.1 | 185 |
2025-11-24 6:45:59 | gate-evm-check-code2@2.0.5 | 183 |
2025-11-24 6:23:32 | gate-evm-check-code2@2.0.4 | 183 |
2025-11-24 5:35:00 | gate-evm-check-code2@2.0.3 | 183 |
2025-11-24 9:17:45 | gate-evm-check-code2@2.0.6 | 183 |
2025-11-24 16:45:03 | sufetch@0.4.1 | 182 |
2025-11-24 16:43:51 | @oku-ui/roving-focus@0.6.2 | 174 |
2025-11-24 6:56:23 | zuper-sdk@1.0.57 | 169 |
2025-11-24 10:05:19 | react-native-fetch@2.0.1 | 162 |
2025-11-24 10:23:26 | react-native-fetch@2.0.2 | 162 |
2025-11-24 16:44:52 | @silgi/permission@0.6.8 | 159 |
2025-11-24 10:06:21 | typefence@1.2.2 | 157 |
2025-11-24 16:44:10 | @oku-ui/tabs@0.6.2 | 157 |
2025-11-24 16:44:24 | @oku-ui/collection@0.6.2 | 157 |
2025-11-24 10:23:11 | typefence@1.2.3 | 157 |
2025-11-24 10:05:24 | just-toasty@1.7.1 | 154 |
2025-11-24 10:23:24 | flapstacks@1.0.2 | 147 |
2025-11-24 10:06:50 | flapstacks@1.0.1 | 147 |
2025-11-24 10:05:59 | dont-go@1.1.2 | 146 |
2025-11-24 16:42:55 | ts-relay-cursor-paging@2.1.1 | 144 |
2025-11-24 17:40:33 | @micado-digital/stadtmarketing-kufstein-external@1.9.1 | 141 |
2025-11-24 16:44:55 | @silgi/drizzle@0.8.4 | 140 |
2025-11-24 5:43:12 | esbuild-plugin-brotli@0.2.1 | 138 |
2025-11-24 16:51:29 | quickswap-token-lists@1.0.3 | 137 |
2025-11-24 16:44:57 | @silgi/better-auth@0.8.1 | 136 |
2025-11-24 11:33:02 | n8n-nodes-vercel-ai-sdk@0.1.7 | 134 |
2025-11-24 11:20:09 | @voiceflow/body-parser@1.21.3 | 133 |
2025-11-24 9:12:50 | prime-one-table@0.0.19 | 131 |
2025-11-24 10:23:21 | react-native-datepicker-modal@1.3.2 | 130 |
2025-11-24 10:05:30 | react-native-datepicker-modal@1.3.1 | 130 |
2025-11-24 16:44:26 | @oku-ui/popper@0.6.2 | 127 |
2025-11-24 10:07:04 | south-african-id-info@1.0.2 | 127 |
2025-11-24 10:06:48 | feature-flip@1.0.1 | 125 |
2025-11-24 10:23:39 | feature-flip@1.0.2 | 125 |
2025-11-24 16:45:00 | @silgi/graphql@0.7.15 | 123 |
2025-11-24 16:51:25 | quickswap-default-staking-list-address@1.0.55 | 120 |
2025-11-24 7:09:28 | skills-use@0.1.2 | 118 |
2025-11-24 6:45:50 | skills-use@0.1.1 | 118 |
2025-11-24 6:23:23 | bytecode-checker-cli@1.0.9 | 117 |
2025-11-24 9:17:29 | bytecode-checker-cli@1.0.11 | 117 |
2025-11-24 5:35:23 | bytecode-checker-cli@1.0.8 | 117 |
2025-11-24 6:46:00 | bytecode-checker-cli@1.0.10 | 117 |
2025-11-24 16:44:36 | @silgi/module-builder@0.8.8 | 114 |
2025-11-24 12:56:35 | create-director-app@0.1.1 | 114 |
2025-11-24 7:51:10 | eslint-config-trigo@22.0.2 | 113 |
2025-11-24 16:44:20 | @silgi/ecosystem@0.7.6 | 112 |
2025-11-24 10:51:40 | uplandui@0.5.4 | 111 |
2025-11-24 9:12:45 | super-commit@1.0.1 | 105 |
2025-11-24 6:20:23 | @markvivanco/app-version-checker@1.0.1 | 105 |
2025-11-24 6:28:22 | @markvivanco/app-version-checker@1.0.2 | 105 |
2025-11-24 10:23:05 | jacob-zuma@1.0.2 | 103 |
2025-11-24 10:06:28 | jacob-zuma@1.0.1 | 103 |
2025-11-24 5:17:18 | scgs-capacitor-subscribe@1.0.11 | 102 |
2025-11-24 16:45:00 | @oku-ui/visually-hidden@0.6.2 | 100 |
2025-11-24 9:42:42 | @ntnx/t@0.0.101 | 99 |
2025-11-24 10:23:20 | pico-uid@1.0.4 | 97 |
2025-11-24 10:05:36 | pico-uid@1.0.3 | 97 |
2025-11-24 13:29:17 | my-saeed-lib@0.1.1 | 97 |
2025-11-24 16:44:35 | @huntersofbook/ui@0.5.1 | 93 |
2025-11-24 10:05:39 | axios-cancelable@1.0.1 | 93 |
2025-11-24 10:21:08 | axios-cancelable@1.0.2 | 93 |
2025-11-24 12:08:41 | jsonsurge@1.0.7 | 90 |
2025-11-24 7:33:03 | jan-browser@0.13.1 | 88 |
2025-11-24 10:23:38 | react-micromodal.js@1.0.2 | 87 |
2025-11-24 10:07:03 | react-micromodal.js@1.0.1 | 87 |
2025-11-24 10:06:16 | sa-company-registration-number-regex@1.0.1 | 86 |
2025-11-24 10:23:22 | sa-company-registration-number-regex@1.0.2 | 86 |
2025-11-24 16:44:51 | @oku-ui/arrow@0.6.2 | 85 |
2025-11-24 10:05:36 | barebones-css@1.1.3 | 84 |
2025-11-24 6:19:36 | @hapheus/n8n-nodes-pgp@1.5.1 | 84 |
2025-11-24 10:23:37 | barebones-css@1.1.4 | 84 |
2025-11-24 16:44:14 | @oku-ui/dismissable-layer@0.6.2 | 83 |
2025-11-24 10:04:46 | jquery-bindings@1.1.2 | 83 |
2025-11-24 16:44:50 | @oku-ui/portal@0.6.2 | 83 |
2025-11-24 10:22:47 | jquery-bindings@1.1.3 | 83 |
2025-11-24 7:44:22 | @orbitgtbelgium/mapbox-gl-draw-cut-polygon-mode@2.0.5 | 82 |
2025-11-24 16:44:55 | @oku-ui/separator@0.6.2 | 80 |
2025-11-24 7:51:17 | @trigo/atrix@7.0.1 | 80 |
2025-11-24 16:44:48 | @oku-ui/tooltip@0.6.2 | 79 |
2025-11-24 10:05:25 | @ifings/design-system@4.9.2 | 78 |
2025-11-24 16:44:08 | @silgi/scalar@0.6.2 | 78 |
2025-11-24 16:44:08 | @oku-ui/slider@0.6.2 | 77 |
2025-11-24 16:44:44 | @huntersofbook/form-naiveui@0.5.1 | 77 |
2025-11-24 12:56:38 | @browserbasehq/director-ai@1.0.3 | 76 |
2025-11-24 16:44:41 | @oku-ui/collapsible@0.6.2 | 76 |
2025-11-24 7:51:23 | @trigo/fsm@3.4.2 | 76 |
2025-11-24 16:44:49 | @silgi/openapi@0.7.4 | 75 |
2025-11-24 4:25:40 | react-native-worklet-functions@3.3.3 | 74 |
2025-11-24 16:44:10 | nuxt-keycloak@0.2.2 | 74 |
2025-11-24 5:17:18 | capacitor-plugin-apptrackingios@0.0.21 | 73 |
2025-11-24 12:57:55 | @browserbasehq/stagehand-docs@1.0.1 | 69 |
2025-11-24 10:23:33 | set-nested-prop@2.0.2 | 67 |
2025-11-24 10:05:30 | set-nested-prop@2.0.1 | 67 |
2025-11-24 4:55:13 | poper-react-sdk@0.1.2 | 66 |
2025-11-24 11:18:41 | @hover-design/react@0.2.1 | 66 |
2025-11-24 6:19:34 | n8n-nodes-tmdb@0.5.1 | 66 |
2025-11-24 5:34:58 | evm-checkcode-cli@1.0.12 | 64 |
2025-11-24 6:46:00 | evm-checkcode-cli@1.0.14 | 64 |
2025-11-24 9:17:22 | evm-checkcode-cli@1.0.15 | 64 |
2025-11-24 6:23:27 | evm-checkcode-cli@1.0.13 | 64 |
2025-11-24 16:44:26 | @pergel/nuxt@0.25.5 | 63 |
2025-11-24 14:01:18 | ids-enterprise-mcp-server@0.0.2 | 63 |
2025-11-24 16:51:28 | quickswap-default-staking-list@1.0.11 | 62 |
2025-11-24 10:06:06 | fuzzy-finder@1.0.5 | 61 |
2025-11-24 10:23:28 | fuzzy-finder@1.0.6 | 61 |
2025-11-24 16:44:22 | @oku-ui/avatar@0.6.2 | 59 |
2025-11-24 4:25:40 | expo-audio-session@0.2.1 | 56 |
2025-11-24 3:26:31 | @strapbuild/react-native-date-time-picker@2.0.4 | 56 |
2025-11-24 10:19:33 | lint-staged-imagemin@1.3.2 | 55 |
2025-11-24 10:07:00 | lint-staged-imagemin@1.3.1 | 55 |
2025-11-24 16:44:23 | @oku-ui/focus-guards@0.6.2 | 55 |
2025-11-24 16:51:26 | quickswap-ads-list@1.0.33 | 54 |
2025-11-24 5:17:18 | capacitor-plugin-purchase@0.1.1 | 54 |
2025-11-24 10:23:25 | @lessondesk/api-client@9.12.3 | 52 |
2025-11-24 9:22:39 | ngx-wooapi@12.0.1 | 52 |
2025-11-24 16:44:02 | pergel@0.13.2 | 52 |
2025-11-24 10:05:39 | @lessondesk/api-client@9.12.2 | 52 |
2025-11-24 10:07:05 | react-native-view-finder@1.2.1 | 51 |
2025-11-24 10:22:52 | react-native-view-finder@1.2.2 | 51 |
2025-11-24 7:51:22 | @trigo/trigo-hapijs@5.0.1 | 50 |
2025-11-24 10:23:33 | @varsityvibe/validation-schemas@0.6.8 | 50 |
2025-11-24 10:06:56 | @varsityvibe/validation-schemas@0.6.7 | 50 |
2025-11-24 10:22:48 | fat-fingered@1.0.2 | 49 |
2025-11-24 10:07:03 | fat-fingered@1.0.1 | 49 |
2025-11-24 10:23:00 | @varsityvibe/api-client@1.3.37 | 48 |
2025-11-24 10:05:37 | @varsityvibe/api-client@1.3.36 | 48 |
2025-11-24 16:44:59 | @oku-ui/focus-scope@0.6.2 | 48 |
2025-11-24 16:44:58 | unadapter@0.1.3 | 47 |
2025-11-24 3:26:30 | @quick-start-soft/quick-markdown-translator@1.4.2509202331 | 47 |
2025-11-24 10:05:40 | react-linear-loader@1.0.2 | 47 |
2025-11-24 10:06:00 | @tiaanduplessis/react-progressbar@1.0.1 | 46 |
2025-11-24 10:23:26 | @tiaanduplessis/react-progressbar@1.0.2 | 46 |
2025-11-24 10:07:08 | formik-store@1.0.1 | 45 |
2025-11-24 11:12:56 | @fishingbooker/react-swiper@0.1.5 | 42 |
2025-11-24 3:10:32 | @asyncapi/dotnet-rabbitmq-template@1.0.1 | 42 |
2025-11-24 3:58:59 | @asyncapi/dotnet-rabbitmq-template@1.0.2 | 42 |
2025-11-24 10:18:54 | next-simple-google-analytics@1.1.2 | 41 |
2025-11-24 10:06:12 | next-simple-google-analytics@1.1.1 | 41 |
2025-11-24 11:20:15 | @voiceflow/runtime-client-js@1.17.3 | 40 |
2025-11-24 5:49:05 | @ensdomains/web3modal@1.10.2 | 39 |
2025-11-24 10:05:32 | fittxt@1.0.2 | 39 |
2025-11-24 10:20:11 | fittxt@1.0.3 | 39 |
2025-11-24 16:44:35 | create-silgi@0.3.1 | 38 |
2025-11-24 16:44:59 | nitroping@0.1.1 | 38 |
2025-11-24 10:52:51 | invo@0.2.2 | 37 |
2025-11-24 15:45:51 | @hyperlook/telemetry-sdk@1.0.19 | 35 |
2025-11-24 12:10:54 | solomon-api-stories@1.0.2 | 35 |
2025-11-24 15:48:54 | victoria-wallet-core@0.1.1 | 34 |
2025-11-24 7:33:05 | @louisle2/cortex-js@0.1.6 | 34 |
2025-11-24 5:21:36 | medusa-plugin-logs@0.0.17 | 34 |
2025-11-24 16:24:32 | victoria-wallet-core@0.1.2 | 34 |
2025-11-24 16:44:05 | @silgi/yoga@0.7.1 | 33 |
2025-11-24 10:05:54 | @varsityvibe/utils@5.0.6 | 32 |
2025-11-24 16:51:26 | kinetix-default-token-list@1.0.5 | 32 |
2025-11-24 10:23:03 | svelte-toasty@1.1.3 | 31 |
2025-11-24 10:06:07 | svelte-toasty@1.1.2 | 31 |
2025-11-24 16:44:46 | schob@1.0.3 | 31 |
2025-11-24 5:48:59 | @ensdomains/ccip-read-router@0.0.7 | 31 |
2025-11-24 15:53:19 | @alexadark/gatsby-theme-wordpress-blog@2.0.1 | 30 |
2025-11-24 4:09:07 | @posthog/rrweb-replay@0.0.19 | 30 |
2025-11-24 16:43:44 | @oku-ui/dialog@0.6.2 | 30 |
2025-11-24 16:44:59 | @oku-ui/alert-dialog@0.6.2 | 30 |
2025-11-24 10:06:41 | react-keycloak-context@1.0.8 | 29 |
2025-11-24 10:23:31 | flatten-unflatten@1.0.2 | 29 |
2025-11-24 10:23:38 | react-keycloak-context@1.0.9 | 29 |
2025-11-24 10:05:41 | flatten-unflatten@1.0.1 | 29 |
2025-11-24 10:07:06 | httpness@1.0.2 | 28 |
2025-11-24 10:23:33 | httpness@1.0.3 | 28 |
2025-11-24 10:07:00 | template-micro-service@1.0.2 | 27 |
2025-11-24 10:23:28 | license-o-matic@1.2.2 | 27 |
2025-11-24 10:06:14 | license-o-matic@1.2.1 | 27 |
2025-11-24 10:20:25 | template-micro-service@1.0.3 | 27 |
2025-11-24 10:23:33 | sa-id-gen@1.0.5 | 26 |
2025-11-24 11:20:09 | @voiceflow/widget@1.7.19 | 26 |
2025-11-24 4:11:05 | @actbase/native@0.1.32 | 26 |
2025-11-24 5:48:49 | @ensdomains/server-analytics@0.0.2 | 26 |
2025-11-24 10:05:47 | sa-id-gen@1.0.4 | 26 |
2025-11-24 10:19:28 | puny-req@1.0.3 | 26 |
2025-11-24 7:51:21 | @trigo/atrix-swagger@3.0.1 | 26 |
2025-11-24 16:44:31 | @oku-ui/label@0.6.2 | 25 |
2025-11-24 10:51:47 | firestore-search-engine@1.2.3 | 25 |
2025-11-24 16:44:10 | @oku-ui/toggle-group@0.6.2 | 25 |
2025-11-24 16:44:06 | @pergel/module-box@0.6.1 | 25 |
2025-11-24 16:44:15 | @productdevbook/auth@0.2.2 | 25 |
2025-11-24 16:44:58 | @oku-ui/popover@0.6.2 | 24 |
2025-11-24 11:13:13 | generator-meteor-stock@0.1.6 | 24 |
2025-11-24 11:18:39 | @hover-design/core@0.0.1 | 24 |
2025-11-24 16:44:12 | @oku-ui/checkbox@0.6.3 | 24 |
2025-11-24 16:44:19 | @oku-ui/progress@0.6.2 | 24 |
2025-11-24 16:44:58 | @oku-ui/aspect-ratio@0.6.2 | 24 |
2025-11-24 16:44:51 | @oku-ui/toggle@0.6.2 | 24 |
2025-11-24 7:51:05 | trigo-react-app@4.1.2 | 24 |
2025-11-24 16:44:54 | @huntersofbook/core@0.5.1 | 23 |
2025-11-24 10:23:20 | @tiaanduplessis/json@2.0.3 | 23 |
2025-11-24 10:07:00 | react-native-retriable-fetch@2.0.1 | 23 |
2025-11-24 4:11:09 | @actbase/react-native-kakao-navi@2.0.4 | 23 |
2025-11-24 5:21:31 | medusa-plugin-momo@0.0.68 | 23 |
2025-11-24 10:07:02 | @tiaanduplessis/json@2.0.2 | 23 |
2025-11-24 10:20:11 | react-native-retriable-fetch@2.0.2 | 23 |
2025-11-24 4:11:18 | @actbase/react-native-kakao-channel@1.0.2 | 23 |
2025-11-24 3:10:18 | go-template@0.1.8 | 22 |
2025-11-24 16:44:14 | @oku-ui/switch@0.6.2 | 22 |
2025-11-24 16:44:16 | @oku-ui/toolbar@0.6.2 | 22 |
2025-11-24 16:44:14 | @oku-ui/radio-group@0.6.2 | 22 |
2025-11-24 9:12:48 | @osmanekrem/bmad@1.0.6 | 22 |
2025-11-24 3:58:45 | go-template@0.1.9 | 22 |
2025-11-24 16:41:22 | easypanel-sdk@0.3.2 | 21 |
2025-11-24 10:06:10 | @lessondesk/react-table-context@2.0.4 | 21 |
2025-11-24 10:23:33 | react-favic@1.0.2 | 21 |
2025-11-24 16:54:01 | buffered-interpolation-babylon6@0.2.8 | 21 |
2025-11-24 13:29:16 | react-data-to-export@1.0.1 | 21 |
2025-11-24 16:43:59 | better-auth-nuxt@0.0.10 | 21 |
2025-11-24 16:44:56 | @silgi/ratelimit@0.2.1 | 20 |
2025-11-24 4:11:11 | @actbase/react-native-devtools@0.1.3 | 20 |
2025-11-24 7:33:03 | cpu-instructions@0.0.14 | 20 |
2025-11-24 8:57:16 | @trefox/sleekshop-js@0.1.6 | 20 |
2025-11-24 11:52:20 | @trpc-rate-limiter/hono@0.1.4 | 20 |
2025-11-24 11:12:56 | @fishingbooker/browser-sync-plugin@1.0.5 | 20 |
2025-11-24 13:36:59 | @livecms/nuxt-live-edit@1.9.2 | 20 |
2025-11-24 5:07:47 | @aryanhussain/my-angular-lib@0.0.23 | 20 |
2025-11-24 15:53:14 | typeface-antonio-complete@1.0.5 | 19 |
2025-11-24 16:44:01 | @oku-ui/primitives-nuxt@0.3.1 | 19 |
2025-11-24 7:51:20 | @trigo/atrix-elasticsearch@2.0.1 | 19 |
2025-11-24 10:18:47 | @clausehq/flows-step-taskscreateurl@0.1.14 | 19 |
2025-11-24 11:52:18 | @trpc-rate-limiter/cloudflare@0.1.4 | 19 |
2025-11-24 9:13:00 | @commute/bloom@1.0.3 | 19 |
2025-11-24 15:45:50 | @jayeshsadhwani/telemetry-sdk@1.0.14 | 19 |
2025-11-24 9:33:45 | selenium-session-client@1.0.4 | 18 |
2025-11-24 15:53:24 | @alexadark/gatsby-theme-events@1.0.1 | 18 |
2025-11-24 10:14:06 | @clausehq/flows-step-mqtt@0.1.14 | 18 |
2025-11-24 10:05:39 | hyperterm-hipster@1.0.7 | 18 |
2025-11-24 4:10:36 | @actbase/react-absolute@0.8.3 | 17 |
2025-11-24 15:29:44 | @trackstar/test-angular-package@0.0.9 | 17 |
2025-11-24 4:10:29 | @actbase/react-native-actionsheet@1.0.3 | 17 |
2025-11-24 16:44:32 | @oku-ui/hover-card@0.6.2 | 17 |
2025-11-24 6:56:24 | zuper-stream@2.0.9 | 17 |
2025-11-24 16:44:54 | @oku-ui/toast@0.6.2 | 17 |
2025-11-24 10:05:41 | @lessondesk/eslint-config@1.4.2 | 16 |
2025-11-24 11:12:56 | @fishingbooker/react-raty@2.0.1 | 16 |
2025-11-24 9:12:49 | gitsafe@1.0.5 | 16 |
2025-11-24 16:45:00 | lui-vue-test@0.70.9 | 16 |
2025-11-24 11:20:10 | @voiceflow/serverless-plugin-typescript@2.1.8 | 16 |
2025-11-24 9:12:59 | @commute/market-data-chartjs@2.3.1 | 16 |
2025-11-24 7:44:20 | orbit-soap@0.43.13 | 16 |
2025-11-24 16:51:32 | quickswap-smart-order-router@1.0.1 | 16 |
2025-11-24 7:44:46 | react-element-prompt-inspector@0.1.18 | 16 |
2025-11-24 16:44:31 | @oku-ui/scroll-area@0.6.2 | 15 |
2025-11-24 7:44:22 | @orbitgtbelgium/time-slider@1.0.187 | 15 |
2025-11-24 16:51:32 | quickswap-router-sdk@1.0.1 | 15 |
2025-11-24 16:44:07 | @lui-ui/lui-nuxt@0.1.1 | 15 |
2025-11-24 7:51:24 | @trigo/atrix-acl@4.0.2 | 15 |
2025-11-24 9:22:36 | generator-ng-itobuz@0.0.15 | 14 |
2025-11-24 16:44:39 | @oku-ui/menu@0.6.2 | 14 |
2025-11-24 12:52:37 | best_gpio_controller@1.0.10 | 14 |
2025-11-24 5:43:12 | webpack-loader-httpfile@0.2.1 | 14 |
2025-11-24 7:44:14 | command-irail@0.5.4 | 14 |
2025-11-24 3:26:31 | korea-administrative-area-geo-json-util@1.0.7 | 14 |
2025-11-24 16:44:31 | nitro-kutu@0.1.1 | 14 |
2025-11-24 13:37:00 | insomnia-plugin-random-pick@1.0.4 | 14 |
2025-11-24 16:44:18 | @pergel/cli@0.11.1 | 14 |
2025-11-24 10:05:30 | stoor@2.3.2 | 13 |
2025-11-24 16:44:58 | @oku-ui/accordion@0.6.2 | 13 |
2025-11-24 7:51:21 | @trigo/atrix-orientdb@1.0.2 | 13 |
2025-11-24 11:12:56 | @fishingbooker/react-pagination@2.0.6 | 12 |
2025-11-24 4:09:32 | @posthog/variance-plugin@0.0.8 | 12 |
2025-11-24 9:17:44 | create-hardhat3-app@1.1.4 | 12 |
2025-11-24 9:33:45 | selenium-session@1.0.5 | 12 |
2025-11-24 4:08:50 | @posthog/drop-events-on-property-plugin@0.0.8 | 12 |
2025-11-24 15:53:12 | @alexadark/reusable-functions@1.5.1 | 12 |
2025-11-24 6:23:24 | create-hardhat3-app@1.1.2 | 12 |
2025-11-24 11:18:37 | docusaurus-plugin-vanilla-extract@1.0.3 | 12 |
2025-11-24 16:41:17 | tiptap-shadcn-vue@0.2.1 | 12 |
2025-11-24 6:46:02 | create-hardhat3-app@1.1.3 | 12 |
2025-11-24 4:08:50 | @posthog/ingestion-alert-plugin@0.0.8 | 12 |
2025-11-24 4:08:57 | @posthog/twilio-plugin@0.0.8 | 12 |
2025-11-24 5:35:00 | create-hardhat3-app@1.1.1 | 12 |
2025-11-24 16:26:58 | @viapip/eslint-config@0.2.4 | 12 |
2025-11-24 5:49:02 | @ensdomains/hackathon-registrar@1.0.5 | 11 |
2025-11-24 10:26:39 | tcsp-draw-test@1.0.5 | 11 |
2025-11-24 4:08:54 | @posthog/snowflake-export-plugin@0.0.8 | 11 |
2025-11-24 6:14:32 | claude-token-updater@1.0.3 | 11 |
2025-11-24 4:08:55 | @posthog/plugin-unduplicates@0.0.8 | 11 |
2025-11-24 5:49:04 | @ensdomains/ensjs-react@0.0.5 | 11 |
2025-11-24 4:11:12 | @actbase/node-server@1.1.19 | 11 |
2025-11-24 4:11:11 | @actbase/css-to-react-native-transform@1.0.3 | 11 |
2025-11-24 5:21:19 | medusa-plugin-product-reviews-kvy@0.0.4 | 11 |
2025-11-24 7:51:21 | @trigo/atrix-pubsub@4.0.3 | 11 |
2025-11-24 5:48:51 | @ensdomains/renewal@0.0.13 | 10 |
2025-11-24 4:08:50 | @posthog/taxonomy-plugin@0.0.8 | 10 |
2025-11-24 9:15:59 | web-scraper-mcp@1.1.4 | 10 |
2025-11-24 7:44:22 | @orbitgtbelgium/orbit-components@1.2.9 | 10 |
2025-11-24 7:51:17 | @trigo/hapi-auth-signedlink@1.3.1 | 10 |
2025-11-24 10:26:40 | hopedraw@1.0.3 | 10 |
2025-11-24 4:08:37 | calc-loan-interest@1.0.4 | 10 |
2025-11-24 16:44:51 | unsearch@0.0.3 | 10 |
2025-11-24 15:53:12 | @alexadark/amadeus-api@1.0.4 | 10 |
2025-11-24 15:53:10 | tavily-module@1.0.1 | 9 |
2025-11-24 11:18:39 | @antstackio/eslint-config-antstack@0.0.3 | 9 |
2025-11-24 4:08:54 | @posthog/url-normalizer-plugin@0.0.8 | 9 |
2025-11-24 17:54:20 | better-queue-nedb@0.1.5 | 9 |
2025-11-24 11:18:39 | @seezo/sdr-mcp-server@0.0.5 | 9 |
2025-11-24 5:48:46 | @ensdomains/ccip-read-worker-viem@0.0.4 | 9 |
2025-11-24 5:43:12 | esbuild-plugin-httpfile@0.4.1 | 9 |
2025-11-24 5:49:02 | @ensdomains/renewal-widget@0.1.10 | 9 |
2025-11-24 10:51:47 | expressos@1.1.3 | 9 |
2025-11-24 10:05:38 | @ifings/metatron3@0.1.5 | 9 |
2025-11-24 10:06:53 | hyper-fullfacing@1.0.3 | 9 |
2025-11-24 4:08:54 | @posthog/intercom-plugin@0.0.8 | 9 |
2025-11-24 10:05:50 | luno-api@1.2.3 | 9 |
2025-11-24 4:10:43 | @actbase/react-native-simple-video@1.0.13 | 9 |
2025-11-24 11:18:40 | @antstackio/shelbysam@1.1.7 | 9 |
2025-11-24 9:12:50 | @osmanekrem/error-handler@1.2.2 | 9 |
2025-11-24 4:08:56 | posthog-plugin-hello-world@1.0.1 | 9 |
2025-11-24 13:06:25 | @vishadtyagi/full-year-calendar@0.1.11 | 9 |
2025-11-24 10:51:24 | use-unsaved-changes@1.0.9 | 8 |
2025-11-24 11:12:56 | dashboard-empty-state@1.0.3 | 8 |
2025-11-24 7:44:18 | react-library-setup@0.0.6 | 8 |
2025-11-24 4:08:55 | @posthog/sendgrid-plugin@0.0.8 | 8 |
2025-11-24 7:51:20 | @trigo/node-soap@0.5.4 | 8 |
2025-11-24 16:44:04 | @pergel/module-graphql@0.6.1 | 8 |
2025-11-24 4:08:50 | @posthog/twitter-followers-plugin@0.0.8 | 8 |
2025-11-24 9:17:34 | test-foundry-app@1.0.4 | 8 |
2025-11-24 6:46:01 | test-foundry-app@1.0.3 | 8 |
2025-11-24 11:10:35 | @pradhumngautam/common-app@1.0.2 | 8 |
2025-11-24 5:48:56 | @ensdomains/reverse-records@1.0.1 | 8 |
2025-11-24 11:18:40 | @antstackio/express-graphql-proxy@0.2.8 | 8 |
2025-11-24 12:52:33 | jaetut-varit-test@1.0.2 | 8 |
2025-11-24 3:58:37 | @asyncapi/keeper@0.0.3 | 8 |
2025-11-24 4:10:52 | @actbase/react-native-naver-login@1.0.1 | 8 |
2025-11-24 6:23:24 | test-foundry-app@1.0.2 | 8 |
2025-11-24 16:44:56 | @huntersofbook/core-nuxt@0.4.2 | 8 |
2025-11-24 3:10:09 | @asyncapi/keeper@0.0.2 | 8 |
2025-11-24 10:27:16 | @clausehq/flows-step-httprequest@0.1.14 | 8 |
2025-11-24 5:35:00 | test-foundry-app@1.0.1 | 8 |
2025-11-24 13:37:00 | @livecms/live-edit@0.0.32 | 8 |
2025-11-24 10:06:28 | pkg-readme@1.1.1 | 8 |
2025-11-24 7:51:19 | @trigo/bool-expressions@4.1.3 | 8 |
2025-11-24 10:04:52 | @lessondesk/babel-preset@1.0.1 | 8 |
2025-11-24 17:54:20 | electron-volt@0.0.2 | 8 |
2025-11-24 4:11:16 | @actbase/react-native-less-transformer@1.0.6 | 8 |
2025-11-24 10:16:44 | haufe-axera-api-client@0.0.2 | 8 |
2025-11-24 7:51:09 | atrix-mongoose@1.0.1 | 7 |
2025-11-24 10:06:20 | eslint-config-nitpicky@4.0.1 | 7 |
2025-11-24 10:26:40 | hope-mapboxdraw@0.1.1 | 7 |
2025-11-24 10:23:37 | samesame@1.0.3 | 7 |
2025-11-24 16:44:41 | @huntersofbook/auth-vue@0.4.2 | 7 |
2025-11-24 16:51:30 | valuedex-sdk@3.0.5 | 7 |
2025-11-24 10:27:50 | @clausehq/flows-step-sendgridemail@0.1.14 | 7 |
2025-11-24 12:09:43 | dialogflow-es@1.1.3 | 7 |
2025-11-24 11:28:22 | dialogflow-es@1.1.2 | 7 |
2025-11-24 9:22:37 | email-deliverability-tester@1.1.1 | 7 |
2025-11-24 9:33:45 | @dev-blinq/ai-qa-logic@1.0.19 | 7 |
2025-11-24 5:21:21 | @kvytech/medusa-plugin-announcement@0.0.8 | 7 |
2025-11-24 5:43:12 | rollup-plugin-httpfile@0.2.1 | 7 |
2025-11-24 11:20:12 | dialogflow-es@1.1.1 | 7 |
2025-11-24 5:43:13 | vite-plugin-httpfile@0.2.1 | 7 |
2025-11-24 11:12:56 | @fishingbooker/react-loader@1.0.7 | 7 |
2025-11-24 7:51:22 | @trigo/atrix-soap@1.0.2 | 7 |
2025-11-24 3:26:30 | test23112222-api@1.0.1 | 7 |
2025-11-24 4:08:50 | @posthog/currency-normalization-plugin@0.0.8 | 7 |
2025-11-24 3:26:31 | manual-billing-system-miniapp-api@1.3.1 | 7 |
2025-11-24 5:48:42 | @ensdomains/curvearithmetics@1.0.1 | 7 |
2025-11-24 13:10:10 | dialogflow-es@1.1.4 | 7 |
2025-11-24 16:44:37 | @productdevbook/ts-i18n@1.4.2 | 7 |
2025-11-24 15:45:49 | react-scrambled-text@1.0.4 | 7 |
2025-11-24 9:22:37 | pdf-annotation@0.0.2 | 7 |
2025-11-24 3:26:30 | axios-builder@1.2.1 | 6 |
2025-11-24 16:44:45 | pergeltest@0.0.25 | 6 |
2025-11-24 11:18:40 | @antstackio/graphql-body-parser@0.1.1 | 6 |
2025-11-24 16:51:33 | uniswap-smart-order-router@3.16.26 | 6 |
2025-11-24 5:21:17 | medusa-plugin-announcement@0.0.3 | 6 |
2025-11-24 4:11:18 | @actbase/react-native-tiktok@1.1.3 | 6 |
2025-11-24 7:44:19 | @orbitgtbelgium/mapbox-gl-draw-scale-rotate-mode@1.1.1 | 6 |
2025-11-24 10:18:35 | tiaan@1.0.2 | 6 |
2025-11-24 4:08:56 | @posthog/github-release-tracking-plugin@0.0.8 | 6 |
2025-11-24 11:18:38 | @antstackio/json-to-graphql@1.0.3 | 6 |
2025-11-24 9:17:35 | test-hardhat-app@1.0.4 | 6 |
2025-11-24 7:33:02 | lite-serper-mcp-server@0.2.2 | 6 |
2025-11-24 4:11:10 | @actbase/react-native-fast-image@8.5.13 | 6 |
2025-11-24 6:46:09 | test-hardhat-app@1.0.3 | 6 |
2025-11-24 12:10:53 | solomon-v3-ui-wrapper@1.6.1 | 6 |
2025-11-24 16:29:33 | @chtijs/eslint-config@1.0.1 | 6 |
2025-11-24 11:20:12 | @voiceflow/openai@3.2.3 | 6 |
2025-11-24 10:26:45 | tcsp@2.0.2 | 6 |
2025-11-24 4:08:50 | @posthog/postgres-plugin@0.0.8 | 6 |
2025-11-24 5:17:17 | capacitor-purchase-history@0.0.10 | 6 |
2025-11-24 17:14:27 | kns-error-code@1.0.8 | 6 |
2025-11-24 7:51:15 | @trigo/atrix-postgres@1.0.3 | 6 |
2025-11-24 5:34:58 | test-hardhat-app@1.0.1 | 6 |
2025-11-24 7:51:19 | bool-expressions@0.1.2 | 6 |
2025-11-24 5:48:59 | @ensdomains/unicode-confusables@0.1.1 | 6 |
2025-11-24 7:51:22 | @trigo/atrix-mongoose@1.0.2 | 6 |
2025-11-24 10:26:42 | tcsp-test-vd@2.4.4 | 6 |
2025-11-24 10:27:05 | @clausehq/flows-step-jsontoxml@0.1.14 | 6 |
2025-11-24 16:44:18 | @productdevbook/animejs-vue@0.2.1 | 6 |
2025-11-24 6:23:23 | test-hardhat-app@1.0.2 | 6 |
2025-11-24 11:20:11 | @voiceflow/nestjs-rate-limit@1.3.3 | 6 |
2025-11-24 12:42:40 | rediff@1.0.5 | 6 |
2025-11-24 5:21:27 | @kvytech/medusa-plugin-management@0.0.5 | 6 |
2025-11-24 3:26:31 | @quick-start-soft/quick-markdown-compose@1.4.2506300029 | 6 |
2025-11-24 4:11:07 | discord-bot-server@0.1.2 | 5 |
2025-11-24 5:17:20 | capacitor-plugin-scgssigninwithgoogle@0.0.5 | 5 |
2025-11-24 5:48:55 | @ensdomains/durin@0.1.2 | 5 |
2025-11-24 16:44:49 | @afetcan/api@0.0.13 | 5 |
2025-11-24 5:21:21 | @kvytech/medusa-plugin-newsletter@0.0.5 | 5 |
2025-11-24 5:48:42 | @ensdomains/blacklist@1.0.1 | 5 |
2025-11-24 7:51:12 | @trigo/eslint-config-trigo@3.3.1 | 5 |
2025-11-24 4:08:50 | @posthog/maxmind-plugin@0.1.6 | 5 |
2025-11-24 15:29:44 | @trackstar/test-package@1.1.5 | 5 |
2025-11-24 17:54:20 | babel-preset-kinvey-flex-service@0.1.1 | 5 |
2025-11-24 5:48:46 | @ensdomains/cypress-metamask@1.2.1 | 5 |
2025-11-24 5:21:38 | @kvytech/cli@0.0.7 | 5 |
2025-11-24 4:08:59 | @posthog/netdata-event-processing@0.0.8 | 5 |
2025-11-24 4:08:49 | @posthog/web-dev-server@1.0.5 | 5 |
2025-11-24 5:21:22 | @kvytech/components@0.0.2 | 5 |
2025-11-24 3:26:46 | @strapbuild/react-native-perspective-image-cropper@0.4.15 | 5 |
2025-11-24 3:26:31 | @strapbuild/react-native-perspective-image-cropper-2@0.4.7 | 5 |
2025-11-24 11:20:10 | @voiceflow/nestjs-redis@1.3.2 | 5 |
2025-11-24 16:51:33 | uniswap-test-sdk-core@4.0.8 | 5 |
2025-11-24 7:44:12 | exact-ticker@0.3.5 | 5 |
2025-11-24 5:21:42 | @kvytech/medusa-plugin-product-reviews@0.0.9 | 5 |
2025-11-24 4:08:50 | @posthog/filter-out-plugin@0.0.8 | 5 |
2025-11-24 16:44:55 | @pergel/module-ui@0.0.9 | 5 |
2025-11-24 3:26:57 | @strapbuild/react-native-perspective-image-cropper-poojan31@0.4.6 | 5 |
2025-11-24 16:44:10 | @afetcan/storage@0.0.27 | 5 |
2025-11-24 10:05:28 | @thedelta/eslint-config@1.0.2 | 5 |
2025-11-24 3:26:29 | iron-shield-miniapp@0.0.2 | 5 |
2025-11-24 16:45:02 | @huntersofbook/i18n@0.8.2 | 5 |
2025-11-24 7:51:20 | @trigo/jsdt@0.2.1 | 5 |
2025-11-24 4:08:54 | @posthog/migrator3000-plugin@0.0.8 | 5 |
2025-11-24 5:49:07 | @ensdomains/name-wrapper@1.0.1 | 5 |
2025-11-24 11:18:38 | hover-design-prototype@0.0.5 | 5 |
2025-11-24 17:54:20 | create-kinvey-flex-service@0.2.1 | 5 |
2025-11-24 5:17:17 | capacitor-voice-recorder-wav@6.0.3 | 5 |
2025-11-24 11:18:40 | @faq-component/react@1.0.1 | 5 |
2025-11-24 16:34:52 | csv-tool-cli@1.2.1 | 5 |
2025-11-24 9:33:45 | prompt-eng-server@1.0.18 | 4 |
2025-11-24 16:44:25 | @productdevbook/motion@1.0.4 | 4 |
2025-11-24 4:08:50 | @posthog/databricks-plugin@0.0.8 | 4 |
2025-11-24 4:09:04 | @posthog/zendesk-plugin@0.0.8 | 4 |
2025-11-24 11:27:11 | @suraj_h/medium-common@1.0.5 | 4 |
2025-11-24 4:08:55 | @posthog/customerio-plugin@0.0.8 | 4 |
2025-11-24 6:45:51 | @mcp-use/mcp-use@1.0.1 | 4 |
2025-11-24 7:51:06 | redux-forge@2.5.3 | 4 |
2025-11-24 4:08:50 | @posthog/pagerduty-plugin@0.0.8 | 4 |
2025-11-24 10:01:57 | @relyt/claude-context-core@0.1.1 | 4 |
2025-11-24 15:45:49 | express-starter-template@1.0.10 | 4 |
2025-11-24 4:08:50 | @posthog/automatic-cohorts-plugin@0.0.8 | 4 |
2025-11-24 7:51:21 | @trigo/atrix-redis@1.0.2 | 4 |
2025-11-24 17:54:20 | kinvey-cli-wrapper@0.3.1 | 4 |
2025-11-24 14:59:32 | asciitranslator@1.0.3 | 4 |
2025-11-24 7:51:09 | atrix@1.0.1 | 4 |
2025-11-24 5:21:20 | @kvytech/habbit-e2e-test@0.0.2 | 4 |
2025-11-24 9:13:00 | @commute/market-data@1.0.2 | 4 |
2025-11-24 9:22:38 | itobuz-angular-button@8.0.11 | 4 |
2025-11-24 6:56:24 | zuper-cli@1.0.1 | 4 |
2025-11-24 4:08:49 | drop-events-on-property-plugin@0.0.2 | 4 |
2025-11-24 9:22:40 | wellness-expert-ng-gallery@5.1.1 | 4 |
2025-11-24 11:18:39 | @faq-component/core@0.0.4 | 4 |
2025-11-24 12:42:41 | rediff-viewer@0.0.7 | 4 |
2025-11-24 9:22:39 | itobuz-angular-auth@8.0.11 | 4 |
2025-11-24 4:08:52 | @posthog/gitub-star-sync-plugin@0.0.8 | 4 |
2025-11-24 4:08:56 | @posthog/event-sequence-timer-plugin@0.0.8 | 4 |
2025-11-24 7:09:30 | @mcp-use/mcp-use@1.0.2 | 4 |
2025-11-24 5:21:34 | @kvytech/web@0.0.2 | 4 |
2025-11-24 11:25:14 | arc-cli-fc@1.0.1 | 4 |
2025-11-24 11:17:06 | benmostyn-frame-print@1.0.1 | 3 |
2025-11-24 10:42:15 | mon-package-react-typescript@1.0.1 | 3 |
2025-11-24 10:49:24 | piclite@1.0.1 | 3 |
2025-11-24 3:10:23 | dotnet-template@0.0.3 | 3 |
2025-11-24 15:29:43 | @trackstar/react-trackstar-link-upgrade@1.1.10 | 3 |
2025-11-24 9:22:37 | ngx-useful-swiper-prosenjit@9.0.2 | 3 |
2025-11-24 4:08:55 | @posthog/kinesis-plugin@0.0.8 | 3 |
2025-11-24 5:43:12 | web-types-htmx@0.1.1 | 3 |
2025-11-24 9:22:40 | itobuz-angular@0.0.1 | 3 |
2025-11-24 15:48:55 | wallet-evm@0.3.1 | 3 |
2025-11-24 16:24:34 | wallet-evm@0.3.2 | 3 |
2025-11-24 4:08:50 | @posthog/heartbeat-plugin@0.0.8 | 3 |
2025-11-24 11:18:30 | shelf-jwt-sessions@0.1.2 | 3 |
2025-11-24 5:48:44 | @ensdomains/ccip-read-dns-gateway@0.1.1 | 3 |
2025-11-24 17:14:30 | m25-transaction-utils@1.1.16 | 3 |
2025-11-24 4:08:49 | @posthog/first-time-event-tracker@0.0.8 | 3 |
2025-11-24 3:26:30 | eslint-config-zeallat-base@1.0.4 | 3 |
2025-11-24 3:58:47 | dotnet-template@0.0.4 | 3 |
2025-11-24 9:22:36 | designstudiouiux@1.0.1 | 3 |
2025-11-24 4:08:55 | @posthog/bitbucket-release-tracker@0.0.8 | 3 |
2025-11-24 5:21:18 | medusa-plugin-zalopay@0.0.40 | 3 |
2025-11-24 16:29:31 | expo-router-on-rails@0.0.4 | 3 |
2025-11-24 5:43:12 | open2internet@0.1.1 | 3 |
2025-11-24 5:43:12 | bun-plugin-httpfile@0.1.1 | 3 |
2025-11-24 3:10:16 | create-glee-app@0.2.2 | 3 |
2025-11-24 16:51:30 | uniswap-router-sdk@1.6.2 | 3 |
2025-11-24 16:51:27 | quickswap-v2-sdk@2.0.1 | 3 |
2025-11-24 11:13:16 | @sme-ui/aoma-vevasound-metadata-lib@0.1.3 | 3 |
2025-11-24 11:18:38 | @pruthvi21/use-debounce@1.0.3 | 3 |
2025-11-24 3:58:42 | create-glee-app@0.2.3 | 3 |
2025-11-24 5:49:00 | @ensdomains/durin-middleware@0.0.2 | 2 |
2025-11-24 16:24:39 | victoria-wallet-constants@0.1.2 | 2 |
2025-11-24 11:20:04 | @voiceflow/stylelint-config@1.1.2 | 2 |
2025-11-24 14:59:46 | simplejsonform@1.0.1 | 2 |
2025-11-24 9:42:41 | @ntnx/passport-wso2@0.0.3 | 2 |
2025-11-24 16:24:36 | victoria-wallet-type@0.1.2 | 2 |
2025-11-24 10:15:11 | chrome-extension-downloads@0.0.3 | 2 |
2025-11-24 11:34:53 | chrome-extension-downloads@0.0.4 | 2 |
2025-11-24 9:22:38 | ito-button@8.0.3 | 2 |
2025-11-24 15:53:19 | frontity-starter-theme@1.0.1 | 2 |
2025-11-24 13:36:59 | vue-browserupdate-nuxt@1.0.5 | 2 |
2025-11-24 15:48:54 | victoria-wallet-utils@0.1.1 | 2 |
2025-11-24 15:48:55 | victoria-wallet-type@0.1.1 | 2 |
2025-11-24 16:24:33 | victoria-wallet-utils@0.1.2 | 2 |
2025-11-24 16:24:33 | victoria-wallet-validator@0.1.2 | 2 |
2025-11-24 17:54:20 | eslint-config-kinvey-flex-service@0.1.1 | 2 |
2025-11-24 16:24:35 | wallet-type@0.1.2 | 2 |
2025-11-24 16:51:26 | soneium-acs@1.0.1 | 2 |
2025-11-24 15:48:54 | victoria-wallet-constants@0.1.1 | 2 |
2025-11-24 15:48:55 | victoria-wallet-validator@0.1.1 | 2 |
2025-11-24 16:44:56 | @vucod/email@0.0.3 | 2 |
2025-11-24 7:44:20 | orbit-nebula-editor@1.0.2 | 2 |
2025-11-24 5:21:31 | @kvytech/medusa-plugin-promotion@0.0.2 | 2 |
2025-11-24 9:22:37 | okta-react-router-6@5.0.1 | 2 |
2025-11-24 15:48:55 | wallet-type@0.1.1 | 2 |
2025-11-24 11:34:53 | @alexcolls/nuxt-socket.io@0.0.8 | 1 |
2025-11-24 4:08:50 | @posthog/laudspeaker-plugin@0.0.8 | 1 |
2025-11-24 12:09:32 | vf-oss-template@1.0.3 | 1 |
2025-11-24 7:44:21 | orbit-nebula-draw-tools@1.0.10 | 1 |
2025-11-24 4:11:08 | @seung-ju/react-hooks@0.0.2 | 1 |
2025-11-24 9:05:20 | package-tester@1.0.1 | 1 |
2025-11-24 11:19:50 | vf-oss-template@1.0.1 | 1 |
2025-11-24 4:10:59 | @seung-ju/openapi-generator@0.0.4 | 1 |
2025-11-24 4:10:59 | @seung-ju/react-native-action-sheet@0.2.1 | 1 |
2025-11-24 14:23:02 | @ifelsedeveloper/protocol-contracts-svm-idl@0.1.3 | 1 |
2025-11-24 16:24:37 | victoriaxoaquyet-wallet-core@0.2.2 | 1 |
2025-11-24 11:20:08 | @voiceflow/anthropic@0.4.5 | 1 |
2025-11-24 15:29:43 | @trackstar/angular-trackstar-link@1.0.2 | 1 |
2025-11-24 7:33:04 | @louisle2/core@1.0.1 | 1 |
2025-11-24 9:24:17 | @ifelsedeveloper/protocol-contracts-svm-idl@0.1.2 | 1 |
2025-11-24 7:51:13 | @trigo/pathfinder-ui-css@0.1.1 | 1 |
2025-11-24 11:28:12 | vf-oss-template@1.0.2 | 1 |
2025-11-24 13:09:58 | vf-oss-template@1.0.4 | 1 |
2025-11-24 15:48:52 | victoriaxoaquyet-wallet-core@0.2.1 | 1 |
2025-11-24 10:15:12 | @alexcolls/nuxt-socket.io@0.0.7 | 1 |
2025-11-24 4:10:59 | @seung-ju/next@0.0.2 | 1 |
2025-11-24 10:23:26 | @lessondesk/electron-group-api-client@1.0.3 | 1 |
2025-11-24 17:54:20 | @mizzle-dev/orm@0.0.2 | 0 |
2025-11-24 16:51:32 | @sameepsi/sor2@2.0.2 | 0 |
2025-11-24 5:17:15 | scgsffcreator@1.0.5 | 0 |
2025-11-24 10:51:48 | @lpdjs/firestore-repo-service@1.0.1 | 0 |
2025-11-24 7:05:26 | @caretive/caret-cli@0.0.2 | 0 |
2025-11-24 16:51:31 | @sameepsi/sor@1.0.3 | 0 |
Recommended Resources
Ready for less noise
and more control?
See Panther in action. Book a demo today.




