npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@paysdoc/depaudit

v1.0.0

Published

Polyglot dependency audit gate CLI

Downloads

93

Readme

depaudit

Polyglot dependency audit gate. Scans every manifest in a repo for CVEs (via OSV.dev) and supply-chain risk (via Socket.dev), classifies findings against a committed, time-limited acceptance list, and fails CI when new or expired findings exist.

Status

Pre-release. See specs/prd/depaudit.md for the full design.

Work is tracked in this repo's Issues. Slice numbering comes from the PRD's tracer-bullet breakdown.

Setup

Copy .env.sample to .env and fill in your credentials:

cp .env.sample .env

| Variable | Description | |---|---| | SOCKET_API_TOKEN | Socket.dev API token for supply-chain risk scanning | | SLACK_WEBHOOK_URL | Slack Incoming Webhook URL for gate failure notifications |

Domain Language

See UBIQUITOUS_LANGUAGE.md for the canonical definitions of terms used throughout this codebase — Findings, Acceptances, the Gate, trigger branches, and more.

Project Structure

.adw/                    # ADW project config (commands, providers, scenarios)
.claude/                 # Claude Code commands and skills
app_docs/                # Feature documentation (per implemented slice)
features/                # Cucumber e2e feature files and step definitions
fixtures/                # Fixture repos for e2e tests
specs/
  prd/
    depaudit.md          # Full product requirements document
  issue-*.md             # Per-issue ADW plan specs
  patch/                 # Patch specs for incremental fixes
src/
  cli.ts                 # CLI entry point
  commands/
    scanCommand.ts       # ScanCommand composition root
    lintCommand.ts       # LintCommand composition root
    postPrCommentCommand.ts  # PostPrCommentCommand composition root
    __tests__/           # Unit tests for commands
  modules/               # Deep modules (ManifestDiscoverer, OsvScannerAdapter, ConfigLoader, Linter,
                         #   FindingMatcher, StateTracker, GhPrCommentClient, JsonReporter,
                         #   MarkdownReporter, SocketApiClient, OrphanDetector, ConfigWriter, etc.)
    __tests__/           # Unit tests with fixture data
  types/                 # Shared domain types (Finding, Manifest, ScanResult, DepauditConfig,
                         #   OsvScannerConfig, PrComment, MarkdownReport, etc.)
templates/
  depaudit-gate.yml      # GitHub Actions gate workflow template (copied by depaudit setup)
.env.sample              # Environment variable template
UBIQUITOUS_LANGUAGE.md   # Domain glossary
cucumber.js              # Cucumber e2e runner config
package.json
tsconfig.json