react-a11y-annotator 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -0
- package/dist/react-a11y-annotator.cjs.js +26 -0
- package/dist/react-a11y-annotator.es.js +24142 -0
- package/dist/vite.svg +1 -0
- package/package.json +60 -0
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# react-a11y-annotator
|
|
2
|
+
|
|
3
|
+
⚡ Runtime accessibility auditing, visual highlighting, and optional auto-fix suggestions for React apps.
|
|
4
|
+
|
|
5
|
+
> Built for React + Vite + JSX
|
|
6
|
+
> Runs only in development mode
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## ✨ Features
|
|
11
|
+
|
|
12
|
+
- Runtime accessibility audit (powered by axe-core)
|
|
13
|
+
- Visual highlight of problematic elements
|
|
14
|
+
- Human-readable suggestions
|
|
15
|
+
- Optional auto-fix (opt-in)
|
|
16
|
+
- Zero config default
|
|
17
|
+
- Safe for large apps (debounced, idle scanning)
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## 📦 Installation
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npm install react-a11y-annotator --save-dev
|
|
25
|
+
```
|