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

@luddites-me/ts-tools

v1.1.4

Published

TypeScript project that provides build tooling for other TypeScript projects

Downloads

10

Readme

ts-tools

Table of Contents

Getting Started

To get started, take a look at the documentation listed below:

package.json scripts

  • yarn beautify: Performs aesthetic operations to make the project files easier to navigate and read.
  • yarn build: Assembles build scripts into a single js module with type definitions.
  • yarn build:prod: Assembles the project for production.
  • yarn build:watch: Builds and tests concurrently while you develop.
  • yarn clean: Purges all temporary folders.
  • yarn count: Counts lines of source code.
  • yarn docs:all: Runs all documentation commands.
  • yarn docs:api: Generates a single API doc based on the code in the project.
  • yarn docs:publish: Assembles the Markdown documentation for the entire project and publish it to GitHub pages using API Extractor.
  • yarn docs:standardize: Creates or updates a new readme with a standard set of readme sections, including a toc, yarn script documentation, links to repo documentation files and "The Unlicense" license.
  • yarn generate:exports: Generates index.ts files for all exports recursively in the 'src' folder.
  • yarn lint: Lints the codebase.
  • yarn lint:docs: Lints the code documentation.
  • yarn lint:fix: Lints the codebase and automatically fixes what it can.
  • yarn test: Runs tests and calculates test coverage.
  • yarn test:bdd: Runs the cucumber BDD test suite
  • yarn test:fast: Runs tests in parallel and calculates test coverage.
  • yarn test:mutations: Runs Stryker-Mutator across the unit test suite.
  • yarn test:watch: Re-runs tests as you develop.

Environment Variables

  • DOCS_CREATE_README_INDEX: If true, create an index of all documents in README.md
    • Default Value: "true"
  • DOCS_CREATE_TOC: If true, create a Table of Contents for each Markdown doc.
    • Default Value: "true"
  • IGNORE_JSON_FILES: A comma-delimited list of json files to exclude from processing
    • Default Value: ".yarn,.vscode,.github,.tmp,temp,node_modules,.git"
  • IGNORE_MARKDOWN_FILES: A comma-delimited list of markdown files to exclude from processing
    • Default Value: "protect-api.md,pull_request_template.md,.github,temp,.tmp,node_modules"
  • IGNORE_PEER_DEPENDENCIES: Comma-delimited list of dependencies to exclude from peerDependencies.
    • Default Value: ""
  • NODE_ENV: The runtime environment, either prod or dev.
    • Default Value: "dev"
  • SYNC_PEER_DEPENDENCIES: If true, sets all project dependencies as peer dependencies
    • Default Value: "true"

License

See LicenseCRF