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

@shipshitdev/ui

v0.7.0

Published

Shared Shipshit.dev React UI package built with TypeScript, Tailwind CSS v4, Radix UI, shadcn-style primitives, and Storybook documentation.

Downloads

1,737

Readme

@shipshitdev/ui

Shared React UI for Shipshit.dev projects.

This package uses the standalone repo architecture from the original shipshitdev/ui package: Vite library build, Storybook docs, Tailwind CSS v4 theme outputs, and public npm exports. The component implementation uses shared shadcn/Radix patterns.

ShipCode-specific UI stays in the ShipCode monorepo package: @shipcode/ui. This package is only for generic UI that GenFeed, ShipLead, ShipCut, ShipCode, and future projects can share.

Install

bun add @shipshitdev/ui

Use

import { Button, Card, CardContent, CardHeader, CardTitle } from '@shipshitdev/ui';
import '@shipshitdev/ui/styles.css';

export function Example() {
  return (
    <Card>
      <CardHeader>
        <CardTitle>Overview</CardTitle>
      </CardHeader>
      <CardContent>
        <Button>Start</Button>
      </CardContent>
    </Card>
  );
}

Public Exports

  • @shipshitdev/ui: generic shared UI only.
  • @shipshitdev/ui/primitives: shadcn-style primitives.
  • @shipshitdev/ui/common: small common composition helpers.
  • @shipshitdev/ui/boards: reusable board surfaces like kanban.
  • @shipshitdev/ui/charts: Recharts-based shared chart primitives.
  • @shipshitdev/ui/flows: @xyflow/react foundation primitives and wrappers.
  • @shipshitdev/ui/workflows: compatibility alias for @shipshitdev/ui/flows.
  • @shipshitdev/ui/design: theme helpers, cn, and design utilities.
  • @shipshitdev/ui/flows.css: compiled XYFlow base styles plus shared flow theme overrides.
  • @shipshitdev/ui/styles.css: compiled Shipshit.dev Tailwind v4 theme.
  • @shipshitdev/ui/themes/light and @shipshitdev/ui/themes/dark: composable theme CSS files.
  • @shipshitdev/ui/tailwind.preset: Tailwind preset for consumers that still use config presets.

Product-specific UI stays in the product repo. ShipCode pipeline/review/diff components belong in @shipcode/ui.

Flows

import '@shipshitdev/ui/styles.css';
import '@shipshitdev/ui/flows.css';
import { FlowCanvas, FlowHandle, FlowNodeShell, Position } from '@shipshitdev/ui/flows';

@shipshitdev/ui/flows is the shared primitive layer only: canvas shell, node shell, handle styling, panel container, and core XYFlow exports. Product-specific editors, node registries, stores, and context menus stay in the product repo.

Charts

import '@shipshitdev/ui/styles.css';
import { ChartContainer, ChartTooltipContent, Line, LineChart, Tooltip, XAxis, YAxis } from '@shipshitdev/ui/charts';

@shipshitdev/ui/charts provides the shared chart shell and tooltip/legend helpers on top of Recharts. Project-specific dashboards and analytics cards stay local.

Development

bun install
bun dev

bun dev starts Storybook. The default Storybook theme is the Shipshit.dev dark visual system.

Scripts

  • bun run build: builds JS, CSS, themes, and Tailwind preset.
  • bun run build-storybook: builds Storybook.
  • bun run typecheck: validates TypeScript.
  • bun test: runs package tests.
  • bun run deps:update: updates dependencies to latest compatible versions.