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

@securenexus/sova

v1.1.0

Published

SOVA - Supply Chain Orchestration & Visualization Assistant. Extract dependency information from any project for SBOM generation.

Readme

SOVA

Supply Chain Orchestration & Visualization Assistant by SecureNexus

Extract dependency information from any project for SBOM generation. Supports 27 languages. Detects supply chain security signals. Zero source-code access needed.

Quick Start

npm install -g @securenexus/sova
sova scan --path .

What it does

SOVA scans your project's package manifests and lock files to produce a structured sova-manifest.json. It extracts direct and transitive dependencies per language, builds a dependency graph from lock files, and detects supply chain security signals — all without ever reading your source code. Upload the manifest to securenexus.ai to generate a full SBOM and vulnerability report.

Run sova (no arguments) for interactive guided mode, or sova scan --help for all CLI options.

Supported Languages

| Language | Manifest / Lock Files | Package Manager | |---|---|---| | JavaScript / Node.js | package.json, package-lock.json, yarn.lock, pnpm-lock.yaml | npm / yarn / pnpm | | Python | requirements.txt, Pipfile, pyproject.toml, poetry.lock, setup.py | pip / pipenv / poetry | | Java | pom.xml, build.gradle, build.gradle.kts | Maven / Gradle | | Kotlin | build.gradle.kts | Gradle | | Groovy | build.gradle | Gradle | | Rust | Cargo.toml, Cargo.lock | Cargo | | Go | go.mod, go.sum | Go modules | | PHP | composer.json, composer.lock | Composer | | Ruby | Gemfile, Gemfile.lock, *.gemspec | Bundler | | Dart / Flutter | pubspec.yaml, pubspec.lock | pub | | Swift | Package.swift, Package.resolved | SwiftPM | | .NET (C# / F#) | *.csproj, *.fsproj, packages.config, *.nuspec | NuGet / Paket | | Docker | Dockerfile, docker-compose.yml | Docker | | Terraform | *.tf | Terraform providers | | Elixir | mix.exs, mix.lock | Mix / Hex | | Scala | build.sbt | sbt | | C / C++ | Makefile, CMakeLists.txt, conanfile.txt, vcpkg.json | Conan / vcpkg | | Haskell | *.cabal, package.yaml, stack.yaml | Cabal / Stack | | Perl | Makefile.PL, cpanfile, META.json | CPAN | | R | DESCRIPTION, renv.lock | CRAN / renv | | Julia | Project.toml, Manifest.toml | Pkg | | Erlang | rebar.config, rebar.lock | Rebar3 | | OCaml | *.opam, dune-project | opam / dune | | HTML (CDN scripts) | *.html, *.htm | CDN | | Cocoa (iOS / macOS) | Podfile, Podfile.lock, Cartfile | CocoaPods / Carthage | | Haxe | haxelib.json | haxelib | | GitHub Actions | .github/workflows/*.yml | GitHub Actions marketplace |

Security Signals

SOVA detects ten categories of supply chain attack patterns in manifest and lock files:

  • install-script — lifecycle hooks that execute code at install time
  • native-code — native binary compilation declarations
  • dependency-confusion — package names vulnerable to registry substitution attacks
  • suspicious-metadata — missing descriptions, version 0.0.0, empty author fields
  • obfuscation — base64/hex-encoded payloads in manifest scripts
  • unsafe-deserialization — dependencies on libraries with known unsafe deserializers
  • code-injection — dynamic code execution enablers declared as dependencies
  • unsafe-archive-extraction — archive extraction without path traversal protection
  • unbounded-resource — XML/regex parsers without resource limits
  • hardcoded-secret — API keys or tokens embedded in manifest files

Signals are reported with severity levels: critical, high, medium, low, info.

Use as Library

import { scanProject } from '@securenexus/sova';

const manifest = await scanProject({ path: '/path/to/project' });
console.log(manifest.scan.totalDependencies); // e.g. 312
console.log(manifest.securitySignals.critical); // e.g. 0

The package ships full TypeScript type definitions. Run sova scan --help for all CLI options.

Contributing

Contributions welcome! See CONTRIBUTING.md for the workflow, or jump straight to:

License

Apache-2.0 — see LICENSE