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

create-veta-app

v0.1.2

Published

Scaffold a production-ready Next.js app with the Veta design system pre-wired.

Readme

create-veta-app

Scaffold a production-ready Next.js 15 app pre-wired with the entire Veta design system in seconds.

pnpm create veta-app my-app
# or
npx create-veta-app my-app
# or
yarn create veta-app my-app
# or
bun create veta-app my-app

What you get

A complete, deployable project with:

| File / Config | Description | | -------------------- | ------------------------------------------------------------------ | | app/globals.css | Tailwind v4 + @vetaui/foundations tokens (colors, spacing, motion) | | app/layout.tsx | Root layout with selected brand preset wired | | app/page.tsx | Working home page rendering <Button> and <Card> | | next.config.ts | transpilePackages configured for all selected Veta packages | | tsconfig.json | Strict TypeScript, moduleResolution: bundler, path alias @/* | | postcss.config.mjs | @tailwindcss/postcss plugin | | .gitignore | Sensible defaults | | docs/FIREBASE.md | Generated when --firebase-setup is used |

Interactive prompts

? Project name          › my-veta-app
? Pick a brand preset   › Veta default | Linear | Vercel | Stripe | Notion | Apple | Brutal
? Add Veta packages     › @vetaui/charts-kit  @vetaui/auth-kit  @vetaui/payments-kit  @vetaui/blog-kit
? Package manager       › pnpm | npm | yarn | bun
? Install dependencies? › yes
? Initialize git repo?  › yes

Flags

create-veta-app my-app --yes        # skip all prompts, use defaults
create-veta-app my-app --pm bun     # force bun as package manager
create-veta-app my-app --firebase-setup --kits auth,payments,analytics,feedback,notifications,search,storage

Packages installed

| Package | Always | Optional | | ------------------------- | ------ | -------- | | @vetaui/foundations | ✅ | — | | @vetaui/atoms | ✅ | — | | @vetaui/molecules | ✅ | — | | @vetaui/organisms | ✅ | — | | @vetaui/charts-kit | — | ✅ | | @vetaui/auth-kit | — | ✅ | | @vetaui/payments-kit | — | ✅ | | @vetaui/blog-kit | — | ✅ | | @vetaui/analytics-kit | — | ✅ | | @vetaui/feedback-kit | — | ✅ | | @vetaui/notifications-kit | — | ✅ | | @vetaui/search-kit | — | ✅ | | @vetaui/storage-kit | — | ✅ |

Firebase quick setup

Pass --firebase-setup when you want a Firebase-ready app shell:

create-veta-app acme-web \
  --yes \
  --kits auth,payments,analytics,feedback,notifications,search,storage \
  --firebase-setup \
  --with-tests

This generates:

  • lib/firebase/client.ts
  • lib/firebase/collections.ts
  • .env.example
  • firestore.rules
  • firestore.indexes.json
  • storage.rules
  • firebase.json
  • docs/FIREBASE.md

The web packages remain provider-agnostic. Today @vetaui/auth-kit has firebaseAuthStrategy, @vetaui/payments-kit has firestoreChargesStore, and the generated Firebase setup gives clients the standard collection/rules/index contract for analytics, feedback, notifications, search, and storage.

Brand presets

Presets are applied at build time via @vetaui/foundations/presets. Each preset overrides the CSS design tokens to match the visual language of popular products:

| Preset | Inspired by | | --------- | ---------------- | | default | Veta's own brand | | linear | Linear.app | | vercel | Vercel | | stripe | Stripe | | notion | Notion | | apple | Apple HIG | | brutal | Neo-brutalism |

After scaffolding

cd my-app
pnpm dev           # → http://localhost:3000

Dark mode: add data-theme="dark" to <html>. Switch presets: change data-preset on <html>.

Development (monorepo)

From the repo root:

pnpm --filter create-veta-app build   # compile CLI (tsup)
node packages/create-veta-app/dist/cli.js my-test-app --yes

License

MIT — Dambert Munoz