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

@plyaz/devtools

v1.10.3

Published

Internal development tools and utilities for the Plyaz ecosystem, including debugging helpers, shared configs, and dev-time enhancements.

Readme

@plyaz/devtools

A centralized repository of shared development tooling to ensure consistency across all @plyaz repositories.


Overview

This package provides core tooling, configuration templates, and CI/CD workflows designed to standardize development, testing, and publishing processes across all projects in the organization.


Features

  • Core scripts for repository setup and package linking
  • Base configurations for ESLint, Prettier, and TypeScript
  • CI/CD workflow templates for publishing packages and building apps/services
  • Private package registry setup using GitHub Packages
  • Publishing and versioning standards for consistent release management

Core Scripts

scripts/dev-setup.sh

Script to set up consumer repositories for development.

scripts/link-all.sh

Script to link all internal packages.

Note: Remember to add execution permissions:

chmod +x scripts/dev-setup.sh scripts/link-all.sh

Configuration Templates

  • ESLint: Base linting rules and plugin configurations
  • Prettier: Code formatting standards
  • TypeScript: Base compiler options and project references

Usage and extension patterns are documented in respective config folders.


CI/CD Workflow Templates

  • Publish Workflow: Standardized GitHub Actions workflow for publishing packages

Documentation for customizing workflows is included in .github/workflows/README.md.


Private Package Registry Setup

NPM Registry Configuration

  • .npmrc template included to configure npm to use GitHub Packages for scoped packages.
  • Workspace repositories should add the .npmrc config and manage authentication tokens securely.

Authentication Workflow

  • Documentation provided for setting up GITHUB_TOKEN secrets in GitHub Actions.
  • Guide for token management during local development.

Getting Started

  1. Clone this repository.
  2. Run the setup script to prepare your repo:
    ./scripts/dev-setup.sh

Temporary Public Publishing Policy

For now, packages can be published publicly using:

pnpm run publish

This is a temporary measure since most packages currently don't contain sensitive content and aren't likely to be widely used externally.

Once we begin working with sensitive content (especially authentication or Web3 integrations), all packages will be made private.

Never commit sensitive files, such as:

  • .env
  • .npmrc (with tokens)

Empty variables are acceptable, but never expose actual secrets.