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

teakit

v0.1.1

Published

CLI for creating, checking, and maintaining Teakit tslib projects.

Readme

teakit

Bun-first CLI for creating and checking Teakit tslib projects.

teakit provides repeatable project actions for humans and AI agents: create a new tslib project and check an existing project.

Start Here

For humans:

For AI agents:

Package Role

teakit is the command-line tool for Teakit tslib operations:

teakit create <name>
teakit doctor
teakit --describe

Commands

| Command | Purpose | | --- | --- | | teakit create <name> | Create a new Teakit tslib project from the built-in tslib template. Flags: --cwd <dir>, --owner <scope>, --description <text>, --dry-run, --format <json\|text>. | | teakit doctor | Check the current working directory and output structured findings. Flag: --format <json\|text>. | | teakit --describe | Print a machine-readable description of commands, exit codes, and finding codes. | | teakit --version / --help | Print the version / human usage (plain text). |

create, doctor, and --describe print a single JSON result; doctor/create carry a stable schemaVersion. create/doctor also accept --format <json|text> — the default follows the TTY (text in a terminal, JSON when piped), so agents that capture stdout get JSON. --version/--help are human-facing plain text. Exit codes: 0 ok/warn, 1 error findings or unsafe to complete, 2 usage error.

Built-in Tslib Template

The tslib template lives in src/templates/tslib.

It is embedded in this repository so teakit create can run from local package data without fetching remote templates at runtime.

Scripts

| Command | Description | | --- | --- | | bun run dev | Starts tsdown in watch mode for package development. | | bun run build | Builds the package into dist and generates declaration files. | | bun run check | Runs Biome checks across the project. | | bun run check:fix | Runs Biome checks and writes safe fixes. | | bun run typecheck | Runs TypeScript type checking without emitting files. | | bun run test | Runs the Bun test suite. | | bun run docs:dev | Starts the Rspress documentation site. | | bun run docs:build | Builds the documentation site. | | bun run docs:preview | Previews the built documentation site. |

Releasing

Releases publish to the public npm registry via the Release workflow, triggered by a version tag:

  1. Bump version in package.json (and src/version.ts — a test keeps them in sync).
  2. Commit, then tag and push: git tag v0.1.0 && git push origin v0.1.0.
  3. The workflow verifies the tag matches package.json, runs check/typecheck/test/build, and runs bun publish.

The workflow authenticates with an NPM_TOKEN repository secret (add it under Settings → Secrets → Actions). The tag must be v<version> (e.g. v0.1.0); a mismatch fails the workflow before publishing.

Rules and Constraints

Repository rules — Bun-only runtime, empty runtime dependencies, repository role, documentation map, the submit-code workflow, and verification — live in AGENTS.md. Durable decisions are distilled under docs/memory/index.md. This README intentionally does not restate them.

License

Copyright (c) 2026 Teakit.org. All rights reserved.

This project is proprietary and is not licensed for public use, distribution, or modification. See LICENSE for details.