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-plugin-a11y-extended

v0.1.0

Published

Advanced accessibility rules for JSX/TSX, supporting custom components and real-world patterns.

Readme

eslint-plugin-a11y-extended

Advanced accessibility (a11y) checks for JSX/TSX — including support for custom components, localization, and real-world issues not covered by standard plugins.

Features

  • Validate aria-label presence on buttons and custom components
  • Check that aria-labelledby references existing elements
  • Ensure role="button" elements are focusable and keyboard-accessible
  • Detect hardcoded accessibility text (e.g., aria-label="Close") and recommend localization
  • Enforce alt or role="presentation" on <img> elements

Installation

npm install eslint-plugin-a11y-extended --save-dev

⚠️ This plugin requires ESLint and @typescript-eslint/parser.

🔧 Usage

In your ESLint config (ESLint v9+):

import plugin from 'eslint-plugin-a11y-extended';
import parser from '@typescript-eslint/parser';

export default [
  {
    files: ['**/*.ts', '**/*.tsx'],
    languageOptions: { parser },
    plugins: {
      'a11y-extended': plugin,
    },
    rules: {
      'a11y-extended/require-aria-label': 'warn',
      'a11y-extended/no-missing-aria-labelledby-target': 'warn',
      'a11y-extended/interactive-supports-focus-and-keys': 'warn',
      'a11y-extended/no-hardcoded-accessibility-text': 'warn',
      'a11y-extended/img-requires-alt-or-role': 'warn',
    },
  },
];

✅ Example Rules

require-aria-label

// ❌ Bad
<button />

// ✅ Good
<button aria-label="Submit" />

no-missing-aria-labelledby-target

// ❌ Bad
<div aria-labelledby="missing-id" />

// ✅ Good
<h2 id="heading">Title</h2>
<div aria-labelledby="heading" />

interactive-supports-focus-and-keys

// ❌ Bad
<div role="button" />

// ✅ Good
<div role="button" tabIndex={0} onKeyDown={() => {}} />

no-hardcoded-accessibility-text

// ❌ Bad
<button aria-label="Close" />

// ✅ Good
<button aria-label={t('close')} />

img-requires-alt-or-role

// ❌ Bad
<img />

// ✅ Good
<img alt="Logo" />
<img role="presentation" />

Testing

This plugin is tested with jest and @typescript-eslint/utils.RuleTester.

To run tests:

npm install
npm test

Why this plugin?

While eslint-plugin-jsx-a11y covers many common issues, it lacks support for project-specific components, localization, and behavioral accessibility. This plugin is meant to bridge that gap in real-world, production React/TypeScript projects.


Contributing

Created by Mariia Parfeniuk
Feel free to open issues or PRs! Suggestions for new rules are welcome.