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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@sigbt/tskit

v3.0.0

Published

My personal TypeScript init kit.

Downloads

17

Readme

@sigbt/tskit

@sigbt/tskit is @sigismundbt’s personal TypeScript scaffolding tool,
used to quickly bootstrap new TypeScript projects with consistent structure and configuration.
It uses pnpm exclusively and runs pnpm init automatically.


🚀 Usage

npx @sigbt/tskit

tskit will automatically initialize a new project,
then guide you through an interactive setup process.


🧩 Supported Project Types

| Type | Description | | ------------ | ----------------------------------------------------------------------------- | | Library | Pure TypeScript package ready for npm publishing. | | CLI Tool | Command-line scaffold with Yargs, Clack, or Hybrid interface. | | Backend | Node backend scaffold with optional database (Mongoose, Prisma, or none). |


⚙️ What It Does

Common setup

  • Creates directories: src/, dist/
  • Adds configs:
    • .prettierrc
    • tsconfig.json
    • vitest.config.ts
    • .gitignore
    • .npmignore
    • mostir.config.mjs
  • Injects default package.json scripts
  • Installs dev dependencies:
    • typescript
    • vitest
    • prettier
    • bumpp
    • mostir

CLI projects

  • Generates src/cli/bin.ts
  • Adds:
    • #!/usr/bin/env node shebang
    • executable permission (chmod 755)
    • proper bin entry in package.json
  • Choose CLI type: Yargs, Clack, or Hybrid

Backend projects

Creates:

src/
  controllers/
  middleware/
  routes/
  lib/
  • Optional integrations: Mongoose or Prisma
  • Adds error.middleware.ts
  • Prepares .env and base scripts

Library projects

  • Minimal structure for npm publishing
  • Auto-adds exports, types, and main fields
  • Supports hybrid (CLI + library) layout

🧰 Scripts

| Command | Description | | ------------ | ----------------------- | | pnpm dev | Run directly with tsx | | pnpm build | Build via mostir | | pnpm start | Run built output | | pnpm test | Run tests with vitest |


📦 Requirements

  • Node.js ≥ 18
  • pnpm installed globally

🧾 Note

This package is primarily for personal use.
Public use is allowed, but updates are made only when improvements are needed.