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

stackmint

v0.1.7

Published

Scaffold any TypeScript full-stack project in seconds

Readme

stackmint Logo

CI NPM Downloads NPM Version NPM Unpacked Size GitHub stars GitHub issues GitHub last commit GitHub commit activity License: MIT

Scaffold any TypeScript full-stack project in seconds.

npx stackmint
# or
npm create stackmint@latest

Features

  • 34+ frameworks supported
  • 50+ integrations (ORMs, auth, AI, payments, etc.)
  • 13+ presets for common stacks
  • 11+ AI IDE configs (Claude Code, OpenCode, Cursor, Copilot, Windsurf, Continue.dev, Sourcegraph Cody, and more)
  • Conflict resolution with smart defaults

Quick Start

# Interactive mode
npx stackmint

# Use a preset
npx stackmint --preset t3-stack

# Skip dependency installation
npx stackmint --preset saas-nextjs --no-install

# List all presets
npx stackmint --list-presets

Available Presets

| Preset | Framework | Key Add-ons | |--------|-----------|-------------| | react-vite | React + Vite | Tailwind CSS + Vitest | | vue-vite | Vue + Vite | Tailwind CSS + Vitest | | svelte-vite | Svelte + Vite | Tailwind CSS + Vitest | | solid-vite | Solid + Vite | Tailwind CSS + Vitest | | api-hono | Hono | Drizzle + Zod + Tailwind | | t3-stack | Next.js 15 | tRPC + Drizzle + Tailwind + shadcn/ui + Zod + Better Auth | | saas-nextjs | Next.js 15 | Better Auth + Drizzle + Stripe + Resend + RHF | | saas-supabase | Next.js 15 | Supabase + Stripe + Resend + shadcn/ui | | ai-app | Next.js 15 | Vercel AI SDK + Drizzle + Tailwind | | edge-worker | Hono | Turso + Upstash + Cloudflare Workers | | content-astro | Astro SSG | Tailwind CSS + Vitest | | docs-vitepress | VitePress | Minimal docs setup | | realtime-convex | Next.js 15 | Convex + shadcn/ui + TanStack Query |

CLI Options

npx stackmint [project-name] [options]

Options:
  --preset <name>          Use a named preset (skip interactive questions)
  --list-presets           List all available presets and exit
  --pm <manager>           Package manager: npm | pnpm | bun | yarn
  --no-install             Scaffold files only, skip dependency installation
  --yes                    Accept all defaults (non-interactive mode)
  --output <dir>           Output directory
  --version, -v            Show version
  --help, -h               Show help

Supported Frameworks

| Category | Frameworks | |----------|------------| | Full-stack | Next.js, SvelteKit, Nuxt, React Router v7, Astro, Analog, TanStack Start | | SPA | React + Vite, Vue + Vite, Solid + Vite, Svelte + Vite, Qwik, Angular | | Backend | Hono, Elysia, Fastify, NestJS, Express, Nitro, H3, Bun Native | | Mobile | Expo SDK 53, React Native CLI | | Content | Astro, VitePress, Docusaurus, Eleventy |

Supported Integrations

  • Database: PostgreSQL, MySQL, SQLite, MongoDB, Turso, Neon
  • ORM: Drizzle, Prisma
  • BaaS: Supabase, Convex, Firebase
  • Auth: Better Auth, Clerk, NextAuth
  • API: tRPC, oRPC, ts-rest, GraphQL
  • Validation: Zod, Valibot, ArkType
  • Styling: Tailwind CSS, Panda CSS, StyleX
  • UI: shadcn/ui, Radix UI, Ark UI
  • AI: Vercel AI SDK, LangChain.js, Mastra
  • Jobs: Inngest, BullMQ, Trigger.dev
  • Payments: Stripe
  • Email: Resend, Nodemailer

AI IDE Support

| AI IDE | Config File | |--------|-------------| | Claude Code / OpenCode | AGENTS.md (auto-generated) | | Cursor | .cursor/rules/stack.mdc | | OpenCode | .opencode/CLAUDE.md | | Continue.dev | .continue/config.json | | Sourcegraph Cody | .cody/commands.json | | GitHub Copilot | .github/copilot-instructions.md | | Windsurf | .windsurf/rules.md | | Replit Agent | .replit + REPLIT.md | | Kotata | .kotata/context.md | | LLM Coding | .claude/llm-conventions.md | | Devin | .devin/context.md |

How It Works

┌─────────────┐    ┌─────────────────┐    ┌──────────────┐
│  Questions  │ -> │ Conflict Check  │ -> │   Generate   │
│  (CLI)      │    │  (21 rules)     │    │  (Templates) │
└─────────────┘    └─────────────────┘    └──────────────┘
                                               │
                                    ┌──────────┴──────────┐
                                    │     Adapters        │
                                    │ (files + deps)      │
                                    └─────────────────────┘

Local Development

# Install dependencies
bun install

# Run in dev mode
bun run dev

# Build for production
bun run build

# Run tests
bun run test

# Generate a project
node dist/stackmint.js --preset t3-stack

Contributing

See CONTRIBUTING.md for:

  • Adding new framework templates
  • Adding new adapters
  • Adding new presets
  • Local dev setup

License

MIT