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

@haus-tech/tech-config

v1.0.2

Published

Shared Cursor rules, ESLint config, and Prettier config for Haus Tech projects. Install in a project to get consistent tooling and AI behavior; upgrading the package applies the latest rules and configs.

Readme

@haus-tech/tech-config

Shared Cursor rules, ESLint config, and Prettier config for Haus Tech projects. Install in a project to get consistent tooling and AI behavior; upgrading the package applies the latest rules and configs.

Install

npm install @haus-tech/tech-config

Or with yarn:

yarn add @haus-tech/tech-config

Or with pnpm:

pnpm add @haus-tech/tech-config

What happens on install

A postinstall script runs and:

  • Overwrites in your project root: eslint.config.js, prettier.config.cjs, and .prettierignore with the package versions.
  • Syncs Cursor rules into .cursor/rules/, overwriting package-managed rule folders. Folders named local and project-specific are never touched so you can keep your own rules there.
  • Creates or updates .github/copilot-instructions.md with Copilot PR review instructions for type assertions and type casting (creates the file if missing; appends a section if the file already exists, without overwriting it).

Install the package's peer dependencies in your project (ESLint, Prettier, TypeScript, and the plugins used by the ESLint config). If you use npm 7+ they may be installed automatically; otherwise add them as needed.

Usage

  • ESLint and Prettier: Use your normal commands; they will pick up the synced config files in the project root.
  • Cursor: Uses .cursor/rules/ automatically; the synced rules apply to AI and editor behavior.

Any local changes you make to eslint.config.js, prettier.config.cjs, or .prettierignore will be overwritten the next time the package is installed or updated. For project-specific overrides, use a local Cursor rule folder (e.g. .cursor/rules/local/) or extend the configs in a separate file and point your tools at that.

Getting updates

Upgrade the package to pull in the latest rules and configs:

npm update @haus-tech/tech-config

Or install a specific version:

npm install @haus-tech/tech-config@latest

After the install, the postinstall script runs again and overwrites the root config files and Cursor rules with the versions from the package.

Releasing

Use Conventional Commits for your work. When ready to release and publish in one go, run:

  • yarn release:patch — patch (e.g. 1.0.0 → 1.0.1)
  • yarn release:minor — minor (e.g. 1.0.0 → 1.1.0)
  • yarn release:major — major (e.g. 1.0.0 → 2.0.0)

Each command updates CHANGELOG.md from commits since the last tag, bumps the version, commits, tags, pushes, and publishes to npm. No separate publish step.