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

xtarterize

v1.13.7

Published

Automated project setup and configuration scaffolding

Downloads

3,727

Readme

xtarterize

Apply production-grade conformance configurations to any JavaScript/TypeScript project

npm version npm downloads License

xtarterize detects your tech stack automatically, then applies curated configurations for linting, type checking, CI workflows, code generation, editor settings, and more — without destructively overwriting your existing setup.

Quick Start

npx xtarterize init

That's it. Your project gets Biome, TypeScript incremental builds, Renovate, commitlint, VS Code settings, GitHub Actions, and more — all tailored to your stack.

Commands

| Command | Description | |---------|-------------| | npx xtarterize init | Scan project and apply conformance configurations | | npx xtarterize sync | Update existing configurations to latest templates | | npx xtarterize diff | Show pending changes without applying anything | | npx xtarterize check | Audit current conformance status | | npx xtarterize add <task> | Apply a specific task (e.g., lint/biome) | | npx xtarterize restore <file> | Restore a file from backup | | npx xtarterize list | List all available tasks and their status |

Supported Stacks

| Category | Supported | |----------|-----------| | Frameworks | React, React Native, Vue, Svelte, Solid, Node.js | | Bundlers | Vite, Next.js, Expo, TanStack Start, Webpack, Rspack | | Styling | Tailwind, Vanilla, CSS Modules, Styled Components, NativeWind, Vanilla Extract | | Package Managers | pnpm, npm, yarn, bun |

How It Works

  1. Detect — Reads package.json, lockfiles, and config files to build a ProjectProfile
  2. Resolve — Determines which tasks are applicable and their current status (new, patch, skip, conflict)
  3. Plan — Shows you exactly what will change before touching anything
  4. Apply — Writes configurations using deep merge and AST patching, backing up originals

Task Categories

  • Linting — Biome
  • TypeScript — Incremental builds, strict mode
  • Vite Plugins — vite-plugin-checker, rollup-plugin-visualizer
  • CI/CD — GitHub Actions (CI, release, auto-update)
  • Dependencies — Renovate configuration
  • Release — commitlint, czg, commit-and-tag-version
  • Quality — Knip (unused code detection)
  • Codegen — Plop generators (framework-aware scaffolding)
  • Monorepo — Turborepo pipeline
  • Editor — VS Code settings and extensions
  • AI Agents — AGENTS.md for AI IDE assistants
  • Scripts — Standardized package.json scripts

Key Principles

  • Idempotent — Running twice changes nothing on the second run
  • Non-destructive — Existing content is preserved via deep merge
  • Dry-run first — Always see what will change before applying
  • Backup always — Every modified file is backed up to .xtarterize/backups/
  • Real templates — All configurations derived from actual production projects

License

MIT