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

@sitharaj08/scaffold-kit

v1.0.0-alpha.1

Published

Production-grade CLI for creating, validating, and publishing JavaScript/TypeScript libraries across all modern frameworks

Readme

Scaffold-Kit

   _____            __  __      _    _  ___ __ 
  / ____|          / _|/ _|    | |  | |/ (_)  |
 | (___   ___ __ _| |_| |_ ___ | | __| |/ /| |_ 
  \___ \ / __/ _` |  _|  _/ _ \| |/ _` |   < | __|
  ____) | (_| (_| | | | || (_) | | (_| | . \| |_ 
 |_____/ \___\\__,_|_| |_| \___/|_|\__,_|_|\_\\__|

✨ Features

  • 🎯 Framework-Agnostic — Support for React, Vue, Svelte, Node.js, and vanilla TypeScript
  • 🚀 Production-Ready Templates — Modern best practices out of the box
  • Package Validation — Validate against npm standards with quality scoring
  • 📦 Safe Publishing — 8 pre-flight checks before publishing
  • 🔄 Migration Assistant — Modernize legacy projects automatically
  • 📚 Docs Generator — Auto-generate API documentation from TypeScript

📦 Installation

# Using npx (recommended)
npx @sitharaj08/scaffold-kit create my-lib

# Global installation
npm install -g @sitharaj08/scaffold-kit

# Or with other package managers
pnpm add -g @sitharaj08/scaffold-kit
yarn global add @sitharaj08/scaffold-kit

🚀 Quick Start

# Create a new library
npx @sitharaj08/scaffold-kit create my-awesome-lib

# The interactive wizard guides you through:
# ✓ Framework selection (React, Vue, Svelte, TypeScript, Node.js)
# ✓ Package type (library, plugin, utility, CLI, SDK)
# ✓ Build system (tsup, Vite, Rollup, unbuild)
# ✓ Module format (ESM, CJS, dual)
# ✓ CI/CD setup (GitHub Actions, GitLab CI)

📖 Commands

| Command | Description | |---------|-------------| | scaffold-kit create [name] | Create a new package with interactive wizard | | scaffold-kit check [path] | Validate package against npm best practices | | scaffold-kit publish | Publish with pre-flight checks | | scaffold-kit add [type] [name] | Add component, hook, or utility | | scaffold-kit migrate | Migrate build system or module format | | scaffold-kit docs | Generate API documentation | | scaffold-kit release | Version bumping and changelog | | scaffold-kit info | Display CLI information |

scaffold-kit create

scaffold-kit create my-lib

Interactive wizard for:

  • Framework selection (React, Vue, Svelte, TypeScript, Node.js)
  • Package type (library, plugin, utility, CLI, SDK)
  • Build system (tsup, Vite, Rollup, unbuild, esbuild)
  • Module format (ESM, CJS, dual)

scaffold-kit check

scaffold-kit check --score
scaffold-kit check --fix
scaffold-kit check --size-limit 50KB

Validates:

  • exports field validity
  • ✔ TypeScript types presence
  • ✔ Tree-shaking compatibility
  • ✔ Bundle size limits
  • ✔ Peer dependency correctness

scaffold-kit publish

scaffold-kit publish --dry-run
scaffold-kit publish --tag beta

8 Pre-flight checks:

  1. Git status clean
  2. On main/master branch
  3. Tests pass
  4. Build succeeds
  5. Registry reachable
  6. Version available
  7. Changelog updated
  8. No secrets exposed

scaffold-kit migrate

scaffold-kit migrate --from rollup --to tsup
scaffold-kit migrate --from cjs --to esm
scaffold-kit migrate --from jest --to vitest

scaffold-kit docs

scaffold-kit docs --format markdown
scaffold-kit docs serve --port 3000

🎨 Supported Frameworks

| Framework | Package Types | Build System | |-----------|---------------|--------------| | React | library, plugin, utility | tsup, Vite | | Vue 3 | library, plugin, utility | tsup, Vite | | Svelte | library, plugin, utility | Vite | | TypeScript | utility, library, SDK | tsup | | Node.js | utility, library, CLI, SDK | tsup |


🔧 Template Presets

| Preset | Features | |--------|----------| | Minimal | TypeScript, tsup, basic setup | | Standard | + Vitest, ESLint, GitHub Actions | | Enterprise | + Husky, Commitlint, Semantic Release, Changesets | | Component Library | + Storybook, Visual testing |


📚 Documentation

Full documentation is available at the docs site:

cd docs-site
npm install
npm run dev

Or visit: https://github.com/sitharaj88/scaffoldkit


🤝 Contributing

Contributions are welcome! Please read our Contributing Guide first.

# Clone the repository
git clone https://github.com/sitharaj88/scaffoldkit.git

# Install dependencies
cd scaffoldkit
npm install

# Build
npm run build

# Run locally
node dist/bin/scaffold.js --help

☕ Support

If you find Scaffold-Kit helpful, consider buying me a coffee!


📄 License

MIT © Sitharaj Seenvivasan


🔗 Links