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

@funish/basis

v0.3.0

Published

Release workflow companion for Vite+ — versioning, publishing, commit validation, and stub mode.

Readme

@funish/basis

GitHub npm version npm downloads

Release workflow companion for Vite+ — versioning, publishing, commit validation, and stub mode.

🧑‍💻 Contributing? See the monorepo documentation for development setup and contribution guidelines.

What is Basis?

Basis is a release workflow companion for Vite+. While Vite+ handles linting, formatting, building, and staged checks, Basis focuses on the remaining pieces of your development workflow: versioning, publishing, commit message validation, and development stub mode.

Features

  • 🏷️ Version Management: Semantic versioning with prerelease support
  • 🚀 Publishing: Flexible npm publishing with tag strategy and git operations
  • 🪪 Commit Validation: Conventional commit message validation via git hooks
  • 🔧 Stub Mode: Development stubs using Jiti for instant iteration (reads from vite.config.ts)
  • 🛠️ Project Audit: Dependency and structure validation with auto-fix

Quick Start

Installation

# Install with pnpm
$ pnpm add -D @funish/basis

# Install with npm
$ npm install -D @funish/basis

Setup Git Hooks

# Install commit-msg hook for commit message validation
basis git setup

CLI Commands

Version Management

# Semantic version increments
basis version patch        # 1.0.0 → 1.0.1
basis version minor        # 1.0.0 → 1.1.0
basis version major        # 1.0.0 → 2.0.0

# Prerelease versions
basis version prerelease            # 1.0.0 → 1.0.1-edge.0
basis version prerelease --preid beta  # 1.0.0 → 1.0.1-beta.0

# Specific version
basis version 2.0.0

Publishing

# Publish with tag detection
basis publish              # Auto-detect tag based on version
basis publish --tag beta   # Custom tag

# With git operations
basis publish --git        # Also create git tag and commit

Build (Stub Mode)

# Generate development stubs (reads pack.entry from vite.config.ts)
basis build --stub

# Production builds use Vite+ directly
vp pack

Git Operations

# Setup git hooks
basis git setup

# Validate commit message
basis git lint-commit

Audit

# Run all audits
basis audit

# Specific audits
basis audit --dependencies  # Audit dependencies only
basis audit --structure     # Audit structure only
basis audit --fix           # Auto-fix issues

Configuration

// basis.config.ts
import { defineBasisConfig } from "@funish/basis/config";

export default defineBasisConfig({
  // Release workflow (version + publish)
  release: {
    npm: {
      tag: "latest",
      additionalTag: "edge",
      access: "public",
    },
    git: {
      tagPrefix: "v",
      push: true,
    },
  },

  // Commit message validation
  git: {
    commitMsg: {
      types: [
        "feat",
        "fix",
        "docs",
        "style",
        "refactor",
        "perf",
        "test",
        "build",
        "ci",
        "chore",
        "revert",
      ],
      maxLength: 72,
      minLength: 10,
    },
  },

  // Audit configuration
  audit: {
    dependencies: {
      outdated: true,
      security: true,
    },
  },
});

Publishing Strategy

Basis uses intelligent tag detection based on version:

  • Stable (1.0.0): Published to latest + edge (configurable)
  • Prerelease (1.0.0-beta.1): Published to beta + edge
  • Custom tag: Use --tag to override

Relationship with Vite+

| Feature | Tool | | ------------------ | ----------------------- | | Linting | vp check (Vite+) | | Formatting | vp fmt (Vite+) | | Production Build | vp pack (Vite+) | | Staged Checks | vp staged (Vite+) | | Version Management | basis version | | Publishing | basis publish | | Commit Validation | basis git lint-commit | | Dev Stub Mode | basis build --stub | | Project Audit | basis audit |

License

MIT © Funish