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

@safetnsr/shipart

v2.0.1

Published

generate README hero images for open source projects using AI — with dynamic theme generation

Downloads

21

Readme

shipart

your README deserves better than a blank top.

shipart

generate README hero images for open source projects using AI. one command, six built-in themes, three dynamic theme modes powered by nano banana 2 (gemini-3.1-flash-image-preview).

$ shipart .

shipart → /home/user/myproject
  name:        myproject
  description: a fast CLI for developers
  category:    CLI tool
  tech:        Node.js, TypeScript, CLI
  theme:       terminal-dark

  generating with gemini-3.1-flash-image-preview... (attempt 1/3)
  saved → /home/user/myproject/banner.png (1.1 MB)

done. 1 banner(s) generated.
  → /home/user/myproject/banner.png

api key

get a free key at aistudio.google.com/apikey, then:

export GOOGLE_AI_KEY=your_key_here

shipart also checks GEMINI_API_KEY, ~/.openclaw/workspace/.credentials/google_ai_key, and ~/.config/shipart/key.


install

npm install -g @safetnsr/shipart

or run without installing:

npx @safetnsr/shipart .

usage

shipart .                                          # generate for current directory
shipart ./myproject                                # specify directory
shipart . --theme bold                             # choose built-in theme
shipart . --output ./docs/hero.png                 # custom output path
shipart . --variations 3                           # generate 3 alternatives
shipart . --model gemini-2.5-flash                 # use a different google model
shipart . --patch-readme                           # also update README.md
shipart . --dry-run                                # preview the prompt
shipart --list-themes                              # show all built-in themes

themes

six built-in themes:

terminal-dark — pure black bg, white monospace text, terminal aesthetic

terminal-dark

minimal — white bg, clean typography, lots of negative space

minimal

bold — high-contrast, large typography, vibrant background

bold

gradient — dark gradient bg (deep blue → purple), modern SaaS look

gradient

retro — pixel art / 8-bit aesthetic, bright colors on dark

retro

paper — off-white, subtle texture, editorial/blog feel

paper


dynamic themes

the killer feature: generate themes from real sources.

--theme-from-url

screenshots the URL, extracts dominant colors, uses it as your theme:

shipart . --theme-from-url https://linear.app

theme-from-url (linear.app)

requires playwright: npm install playwright && npx playwright install chromium

--theme-from-css

parses CSS custom properties from your stylesheet:

shipart . --theme-from-css ./src/globals.css

theme-from-css

works with any CSS file containing --primary, --background, --accent, etc. also detects tailwind config.

--theme-prompt

describe your aesthetic in plain text:

shipart . --theme-prompt "dark purple glassmorphism, blurred edges, neon accent"

theme-prompt


smart project reading

shipart reads your project automatically:

  • package.json — name, description, keywords, main dependencies
  • pyproject.toml / Cargo.toml / go.mod — fallback for python, rust, go projects
  • README.md — first H1, first paragraph, code block languages

options

| flag | description | default | |------|-------------|---------| | --theme <name> | built-in theme | terminal-dark | | --theme-from-url <url> | extract theme from website | — | | --theme-from-css <file> | extract theme from CSS | — | | --theme-prompt <text> | custom theme description | — | | --model <id> | google AI model to use | gemini-3.1-flash-image-preview | | --variations <n> | number of images (1-3) | 1 | | --output <path> | output file path | ./banner.png | | --patch-readme | prepend banner to README.md | false | | --dry-run | print prompt, don't generate | false | | --list-themes | show available themes | — |


mit license