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

@shipbench/board

v0.4.0

Published

React kanban board for ShipBench. Published so the CLI and out-of-repo hosts can consume it; not a supported standalone library.

Readme

@shipbench/board

The React kanban surface for ShipBench. ShipBench Harbor embeds the component; the ShipBench CLI serves the standalone bundle from dist/standalone.html.

Published for convenience, not for public use. This package exists on npm because the ShipBench CLI depends on it at runtime and out-of-repo hosts need it resolvable. External consumption is not a supported use case: the version stays 0.x and breaking changes ship unremarked. If you want ShipBench, start with the shipbench CLI.

Embedded library

Install @shipbench/board, @shipbench/core, react, and react-dom, then load the compiled stylesheet once in the host application:

import { Board, type BoardAPI } from '@shipbench/board';
import '@shipbench/board/styles.css';

const api: BoardAPI = getBoardApi();

export function ProjectBoard() {
  return <Board api={api} />;
}

The stylesheet is an explicit export instead of JavaScript-injected CSS. That keeps server-side imports free of DOM mutations and gives the host control over stylesheet ordering. It contains the complete Tailwind output for Board's own markup; consumers do not need to scan this package with Tailwind. The source stylesheet remains at src/styles.css for design-token parity checks.

React and React DOM are peer dependencies and are external to the compiled library, so the Board shares the host's React instance. The standalone build still bundles its runtime and fonts so shipbench board remains self-contained.

Build outputs

pnpm build cleans dist/ once and then writes both outputs without either Vite config emptying the shared directory:

  • dist/index.js, declarations, and dist/styles.css for package consumers
  • dist/standalone.html and hashed assets for the ShipBench CLI