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

@dysonic/dy-cli-cmd-publish

v1.0.8

Published

Built-in publish command for dy-cli package publishing

Readme

@dysonic/dy-cli-cmd-publish

Architecture

flowchart LR
  user["User"] --> command["PublishCommand"]
  command --> tasks["project task / workspace task"]
  tasks --> project["npm publish"]
  tasks --> workspace["build / test / npm publish"]

@dysonic/dy-cli-cmd-publish implements the dy-cli publish command.

It is responsible for publishing project packages.

For the Chinese version, see README_ZH.md.

Role

This package handles both:

  • package publishing for single projects and monorepo child packages
  • default full-release publishing when executed at a fixed monorepo root

Main Contents

  • src/commands/publish.ts publish command entry
  • src/tasks/publish-project-task.ts publish execution task

Command Semantics

dy-cli publish
dy-cli publish --dry-run
dy-cli publish --tag beta

Supported Capabilities

  • --dry-run
  • --tag
  • --access
  • --otp
  • --registry

Behavior Constraints

  • running it at a monorepo root publishes the full child-package set by default
  • in monorepo child packages, it searches upward for the nearest dy.config.ts
  • packages with private: true are rejected
  • when the workspace is in dy-cli prerelease mode, every target package must already have a stable version published; otherwise the command aborts before publishing
  • dy-cli publish refuses to run from npm publish lifecycle scripts such as prepublishOnly, publish, or postpublish; use a release script name instead

Design Notes

This package has been refactored from a publish-script wrapper into a real publish command implementation. It stays behind the dy-cli publish entry instead of asking users to orchestrate registry publishing manually.