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

eslint-config-tasktreasurer

v1.0.2

Published

Modular, layered ESLint config for scalable hygiene across TaskTreasurer and related projects.

Readme

🧾 TaskTreasurer

Modular, typed, and contributor-first ESLint config for scalable hygiene across ecosystems.

npm version CI Test Status Lint Status Coverage License Node Prettier


🎉 v1.0.1 — First Public Release

🚀 Just published [email protected]
Modular ESLint config for scalable hygiene, typed exports, and contributor-first onboarding.

🧩 Layers: base, typescript, jest, prettier
✅ Postbuild validator included
📦 npmjs.com/package/eslint-config-tasktreasurer

🎂 Released on my birthday. This one’s for the community.


🌟 Vision

TaskTreasurer was built to raise the standard for open-source hygiene, empathy, and contributor experience.
It’s not just a config—it’s a philosophy:

  • Respect contributors
  • Automate diagnostics
  • Eliminate onboarding friction
  • Build tools that scale across ecosystems

🧠 Design Philosophy

  • 🧼 Hygiene-first workflows
  • 🔍 Automated validation over manual debugging
  • 🤝 Contributor-first onboarding
  • 📦 Modular layers for reuse and clarity
  • 🧪 CI/CD as a safety net, not a bottleneck

🚀 Install

npm install --save-dev eslint-config-tasktreasurer

🔧 Usage
In your .eslintrc.js:

module.exports = {
  extends: [
    'eslint-config-tasktreasurer',
    'eslint-config-tasktreasurer/typescript',
    'eslint-config-tasktreasurer/jest',
    'eslint-config-tasktreasurer/prettier'
  ]
};

Available layers:
• 	tasktreasure/base
• 	tasktreasure/typescript
• 	tasktreasure/jest
• 	tasktreasure/prettier

📦 Peer Dependencies
Make sure you have:

npm install --save-dev eslint typescript prettier jest

🧪 Validate Your Setup

Run the built-in validator:
npm run postbuild
Or manually:
npx tsx scripts/validate-exports.ts

🧹 ESLint Hygiene
Scripts:

pnpm run lint        # Check for lint issues
pnpm run lint:fix    # Auto-fix lint issues
pnpm run format      # Check formatting
pnpm run format:fix  # Auto-format code
pnpm run validate    # Run all hygiene checks

🛠️ CI/CD Workflow
GitHub Actions runs:
• 	✅ Environment validation
• 	✅ ESLint & Prettier
• 	✅ Unit & integration tests
• 	✅ Coverage reporting
• 	✅ CRLF enforcement
• 	✅ Optional build step
• 	🚀 Semantic-release for automated publishing

📦 Semantic-release
Automates:
• 	📈 Version bumps
	  📝 Changelog generation
• 	📦 npm publishing
• 	📣 GitHub release notes
Releases are triggered automatically on  via CI.

🧑‍💻 Contributor Setup
TaskTreasurer uses pnpm for fast, workspace-aware installs.

npm install -g pnpm
pnpm install

Run diagnostics and hygiene checks:

pnpm run validate
pnpm run lint
pnpm run format
pnpm test
pnpm run test:coverage
pnpm run fix-crlf

📦 Project Structure

src/
├── controllers/
├── models/
├── routes/
├── services/
config/
scripts/
tests/

🧪 Testing
Run all tests:
pnpm test

Generate coverage report:
pnpm run test:coverage

📊 API Documentation
• 	Swagger UI: coming soon
• 	Health check: coming soon

🔐 Authentication
JWT is required for protected routes.
Example request:

curl -H "Authorization: Bearer <token>" http://localhost:3000/tasks

🤝 Contributing
We welcome thoughtful, respectful contributions. TaskTreasurer empowers contributors with:
• 	🔍 Automated diagnostics
• 	🧼 Frictionless onboarding
• 	📚 Discoverable documentation
• 	🧪 Bulletproof hygiene

Please follow our contributing guide and open issues for bugs, ideas, or improvements.

🗺️ Roadmap
Coming soon:
- eslint-config-tasktreasurer/react
  eslint-config-tasktreasurer/node
- eslint-config-tasktreasurer/security

• 	GitHub templates for issues, PRs, and onboarding


📷 QR Code for Direct Access
QR code for eslint-config-tasktreasurer

🌐 Repository
GitHub → tasktreasurer/eslint-config-tasktreasurer

✨ Maintainer
Built and maintained by @Tarinno
Architecting open-source empathy one config at a time.