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

@victusvinceere/saas-cli

v0.1.7

Published

CLI tool for scaffolding SaaS Kit projects

Readme

@victusvinceere/saas-cli

CLI tool for scaffolding new SaaS projects using the VictusVinceere SaaS kit packages.

Installation

# Install globally
npm install -g @victusvinceere/saas-cli

# Or use npx
npx @victusvinceere/saas-cli init

Commands

init - Create a new project

Creates a new SaaS project with all the boilerplate configured.

saas-cli init [project-name]

Interactive prompts:

  1. Project name - Directory name (lowercase, hyphens only)
  2. Product name - Display name (e.g., "MySaaS")
  3. Description - Short product description
  4. Primary color - Brand color (green, blue, purple, orange, red, indigo)
  5. Modules - Select which packages to include:
    • Landing Pages (@victusvinceere/saas-landing)
    • Payments (@victusvinceere/saas-payments)
    • Admin Panel (@victusvinceere/saas-admin)
    • Blog (@victusvinceere/saas-blog)
  6. Auth providers - Google, GitHub, Magic Links
  7. Database - PostgreSQL, MySQL, or SQLite

Example:

$ saas-cli init my-awesome-app

🚀 Let's create your new SaaS project!

? What is your project name? my-awesome-app
? What is your product name? AwesomeApp
? Short description of your product: The best app for awesome things
? Choose your primary color: blue
? Which modules would you like to include? Landing Pages, Payments, Admin Panel
? Which auth providers do you want? Google, Email (Magic Links)
? Which database will you use? PostgreSQL

✓ Project created successfully!

Generated Project Structure

my-awesome-app/
├── src/
│   ├── app/
│   │   ├── (auth)/
│   │   │   ├── login/page.tsx
│   │   │   ├── signup/page.tsx
│   │   │   └── signout/page.tsx
│   │   ├── api/
│   │   │   └── waitlist/route.ts
│   │   ├── dashboard/
│   │   │   ├── layout.tsx
│   │   │   └── page.tsx
│   │   ├── globals.css
│   │   ├── layout.tsx
│   │   └── page.tsx
│   ├── components/
│   │   └── ui/
│   ├── config/
│   │   └── site.ts          # All content configuration
│   └── lib/
│       └── utils.ts
├── prisma/
│   └── schema.prisma
├── public/
├── .env.example
├── .gitignore
├── next.config.js
├── package.json
├── postcss.config.js
├── tailwind.config.js
└── tsconfig.json

Configuration

All site content is configured in src/config/site.ts:

export const siteConfig = {
  // Branding
  name: "AwesomeApp",
  description: "The best app for awesome things",

  // Theme
  theme: {
    primary: "blue",
  },

  // Navigation
  navigation: [
    { label: "Features", href: "#features" },
    { label: "Pricing", href: "#pricing" },
    { label: "FAQ", href: "#faq" },
  ],

  // Hero Section
  hero: {
    badge: "Now in Beta",
    title: "Your Amazing Product",
    highlight: "Headline",
    description: "...",
    cta: {
      primary: { label: "Get Started", href: "#waitlist" },
      secondary: { label: "Learn More", href: "#features" },
    },
  },

  // Features, Pricing, FAQ, Testimonials, Waitlist, Footer...
};

After Project Creation

# Navigate to project
cd my-awesome-app

# Install dependencies
pnpm install

# Set up environment
cp .env.example .env.local
# Edit .env.local with your credentials

# Push database schema
pnpm db:push

# Start development server
pnpm dev

Environment Variables

Configure these in .env.local:

# Database
DATABASE_URL="postgresql://user:password@localhost:5432/mydb"

# NextAuth
AUTH_SECRET="your-secret-here"
NEXTAUTH_URL="http://localhost:3000"

# Google OAuth
GOOGLE_CLIENT_ID=""
GOOGLE_CLIENT_SECRET=""

# Email (Resend) - for magic links
AUTH_RESEND_KEY=""
EMAIL_FROM="[email protected]"

# Lemon Squeezy - for payments
LEMONSQUEEZY_API_KEY=""
LEMONSQUEEZY_STORE_ID=""
LEMONSQUEEZY_WEBHOOK_SECRET=""

Packages Used

| Package | Description | |---------|-------------| | @victusvinceere/saas-core | Core utilities, auth, types | | @victusvinceere/saas-landing | Landing page components (Hero, Features, Pricing, FAQ, Testimonials, Waitlist) | | @victusvinceere/saas-admin | Admin dashboard components | | @victusvinceere/saas-payments | Lemon Squeezy payment integration | | @victusvinceere/saas-blog | MDX blog system |

Development

# Clone the monorepo
git clone https://github.com/victusvinceere/saas-kit.git

# Install dependencies
pnpm install

# Build CLI
cd packages/cli
pnpm build

# Link globally for testing
pnpm link --global

# Now you can use
saas-cli init test-project

License

MIT