gbu-accessibility-package 3.4.0 → 3.8.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gbu-accessibility-package",
3
- "version": "3.4.0",
4
- "description": "Comprehensive accessibility fixes for HTML files. Smart context-aware alt text generation, form labels, button names, link names, landmarks, heading analysis, and WCAG-compliant role attributes. Covers major axe DevTools issues with individual fix modes.",
3
+ "version": "3.8.0",
4
+ "description": "Comprehensive accessibility fixes and project optimization for HTML files. Smart context-aware alt text generation, form labels, button names, link names, landmarks, heading analysis, WCAG-compliant role attributes, unused files detection, dead code analysis, broken external links detection, and missing local resources detection. Covers major axe DevTools issues with individual fix modes.",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "gbu-a11y": "cli.js",
@@ -21,6 +21,11 @@
21
21
  "landmarks-only": "node cli.js --landmarks-only",
22
22
  "headings-only": "node cli.js --headings-only",
23
23
  "links-check": "node cli.js --links-check",
24
+ "broken-links": "node cli.js --broken-links",
25
+ "404-resources": "node cli.js --404-resources",
26
+ "unused-files": "node cli.js --unused-files",
27
+ "dead-code": "node cli.js --dead-code",
28
+ "file-size": "node cli.js --file-size",
24
29
  "cleanup-only": "node cli.js --cleanup-only",
25
30
  "no-backup": "node cli.js --no-backup",
26
31
  "cleanup-backups": "find . -name '*.backup' -type f -delete",
@@ -51,6 +56,14 @@
51
56
  "smart-alt-text",
52
57
  "accessibility-fixer",
53
58
  "html-accessibility",
59
+ "unused-files",
60
+ "dead-code",
61
+ "missing-resources",
62
+ "404-resources",
63
+ "link-validation",
64
+ "resource-checking",
65
+ "project-optimization",
66
+ "code-analysis",
54
67
  "gbu",
55
68
  "comprehensive",
56
69
  "individual-fixes",