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

@squaredup/cli

v0.2.6

Published

CLI tool for managing SquaredUp plugins

Readme

@squaredup/cli

CLI tool for validating and deploying plugins to the SquaredUp platform.

Installation

npm install -g @squaredup/cli
# or
pnpm add -g @squaredup/cli

Requires Node.js 20 or later

Authentication

Before deploying plugins you need to authenticate with your SquaredUp API key. You can generate one at app.squaredup.com → Settings → Advanced → API.

Interactive login (prompts for key and region):

squaredup login

Non-interactive login (useful in CI):

squaredup login --apiKey <your-api-key> --region eu

| Option | Values | Default | Description | | ---------- | ---------- | ------- | ---------------------- | | --apiKey | string | — | Your SquaredUp API key | | --region | us, eu | us | Target region |

Check your current authentication status:

squaredup status

Log out and clear stored credentials:

squaredup logout

Commands

| Command | Status | Description | | ---------- | --------- | ---------------------------------------- | | login | Available | Authenticate with the SquaredUp platform | | logout | Available | Clear stored credentials | | status | Available | Show current authentication status | | deploy | Available | Deploy a plugin to the platform | | validate | Available | Validate a plugin package or folder | | list | Available | List deployed plugins for your tenant | | delete | Available | Delete a deployed plugin by ID |

Global flags

| Flag | Description | | ----------- | --------------------------- | | --silent | Suppress all output | | --debug | Enable verbose debug output | | --version | Print CLI version | | --help | Show help |

Development

Prerequisites: Node.js ≥20, pnpm

git clone <repo>
cd plugin-cli
pnpm install

| Script | Command | Description | | ------ | ------------ | ------------------------------------ | | Build | pnpm build | Compile TypeScript to dist/ | | Dev | pnpm dev | Watch mode — rebuild on file changes | | Lint | pnpm lint | Run ESLint | | Test | pnpm test | Run tests with Vitest |

After building, you can run the CLI locally:

node dist/index.js --help

To use the squaredup command globally from your local checkout, link the package after building:

pnpm build
pnpm link --global

The squaredup command will now resolve to your local dist/index.js. To unlink when you're done:

pnpm unlink --global @squaredup/cli

Credential storage

Credentials (API key, region, tenant name) are stored in the OS-specific user config directory managed by the conf package under the project name squaredup-cli. The config file is written with 0o600 permissions (owner read/write only).