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

@seedspec/marketplace

v0.1.0-experimental.1

Published

Exploratory local SeedSpec registry and marketplace scaffolder

Downloads

26

Readme

SeedSpec marketplace exploration

This project contains an exploratory, local SeedSpec registry/marketplace and the first usable shape of the seedspec-marketplace create scaffolder. It is a reference implementation for learning where portable protocol behavior ends and registry product policy begins. It is not part of SeedSpec package conformance and is not a deployment starter.

The committed prototype/ was generated from the scaffold and contains the existing hubspot-daily-metric reference package as its only listing.

Try the complete path

Run the published experimental scaffolder:

npx @seedspec/marketplace create /tmp/my-marketplace \
  --package ./reference-solutions/packages/hubspot-daily-metric

When running from the parent SeedSpec/ source workspace before publication, use the local package through npm:

npx --yes ./seedspec-marketplace create /tmp/my-marketplace \
  --package ./reference-solutions/packages/hubspot-daily-metric

cd /tmp/my-marketplace
node ./marketplace.mjs list
node ./marketplace.mjs inspect org.seedspec.examples.hubspot-daily-metric \
  --version 0.1.0-alpha.1
node ./marketplace.mjs agent-guide org.seedspec.examples.hubspot-daily-metric \
  --version 0.1.0-alpha.1
node ./marketplace.mjs retrieve \
  org.seedspec.examples.hubspot-daily-metric \
  0.1.0-alpha.1 \
  sha256:8935cc090490ab4411e7a9ca2d40173a5dc7bcab52b252747bb8af29a6df787b \
  /tmp/retrieved-hubspot-daily-metric
seedspec begin /tmp/retrieved-hubspot-daily-metric

If seedspec is not on PATH, set SEEDSPEC_CLI to the compatible CLI. In this workspace:

export SEEDSPEC_CLI="$PWD/seedspec/packages/cli/bin/seedspec.js"

The generated marketplace stores a complete package directory at a canonical digest address. Retrieval copies and validates that directory. Once retrieved, the package requires neither this marketplace nor a network connection.

The generated project declares the compatible @seedspec/cli. Run npm install inside it before later ingestion, retrieval, verification, or rebuild commands when the CLI is not already available on PATH.

Outputs

Development

npm test

The tests cover scaffold creation, successful and rejected ingestion, validation, content-addressed storage, exact retrieval, digest verification, tamper detection, registry rebuild, ID/version conflict policy, and use of a retrieved package after the registry has been removed.