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

@martinrun/frontend-config

v0.2.11

Published

Shared frontend conventions: ESLint, TypeScript and Prettier config for React + shadcn/ui projects.

Readme

frontend-kit

Shared frontend conventions for personal projects. React + TypeScript + shadcn/ui + Tailwind.

One repo, three distribution channels:

  • npm package @martinrun/frontend-config — ESLint, tsconfig, Prettier. Updated by Renovate.
  • shadcn registry — DESIGN.md, the API client, query defaults, theme tokens. Updated deliberately with shadcn add --overwrite.
  • Claude Code plugin — the conventions skill, so agents follow the rules without a copy of the doc in every repo.

Start here: SETUP.md. The rules themselves: docs/DESIGN.md.

Bringing an existing repo onto this: docs/MIGRATION.md (includes ready-to-paste agent prompts for incremental adoption and full UI migration). Ongoing upkeep once a project is on it: docs/MAINTENANCE.md. The current maintenance review, cross-repo, with its live status: docs/PLAN.md.

Preset

Design system preset code: b0

This is the one manual step in the whole kit — the code is generated interactively and can't be scripted. Go to ui.shadcn.com/create and pick: Base UI primitives, neutral base color, new-york style, default radius (0.5rem), lucide-react icons. That reproduces the modern shadcn default already baked into src/styles/theme.css in this repo, so picking it now doesn't change anything for projects that predate the preset — it just gives you the short code to hand to new projects and agents. Change any of those choices later; re-running init --preset on an existing app is cheap (see SETUP.md Part 3).

pnpm dlx shadcn@latest init --preset <code>

Install into a project

claude plugin marketplace add MartinCa/frontend-kit
claude plugin install frontend-conventions@martinca

pnpm dlx shadcn@latest add MartinCa/frontend-kit/conventions
pnpm dlx shadcn@latest add MartinCa/frontend-kit/api-client
pnpm dlx shadcn@latest add MartinCa/frontend-kit/query-setup
pnpm dlx shadcn@latest add MartinCa/frontend-kit/theme
pnpm dlx shadcn@latest add MartinCa/frontend-kit/theme-provider
pnpm dlx shadcn@latest add MartinCa/frontend-kit/agent-skill

theme-provider needs wiring, not just installing — wrap the app in <ThemeProvider> (SETUP.md Part 6) or dark mode never activates and nothing errors to say why. agent-skill vendors the conventions skill into .claude/skills/ so Claude Code on web and mobile sees it; the marketplace install above only covers the local terminal. Full walkthrough in SETUP.md.

Changing a convention

Change it here, not in a project. Bump the package version for lint changes, tag, and let Renovate deliver it. For DESIGN.md and shared code, commit and reinstall in projects with --overwrite next time you touch them.