gbu-accessibility-package
Version:
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.
94 lines (93 loc) • 2.71 kB
JSON
{
"name": "gbu-accessibility-package",
"version": "3.4.0",
"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.",
"main": "index.js",
"bin": {
"gbu-a11y": "cli.js",
"accessibility-fixer": "cli.js"
},
"scripts": {
"start": "node cli.js",
"fix": "node cli.js",
"preview": "node cli.js --dry-run",
"comprehensive": "node cli.js --comprehensive",
"alt-only": "node cli.js --alt-only",
"lang-only": "node cli.js --lang-only",
"role-only": "node cli.js --role-only",
"forms-only": "node cli.js --forms-only",
"buttons-only": "node cli.js --buttons-only",
"links-only": "node cli.js --links-only",
"landmarks-only": "node cli.js --landmarks-only",
"headings-only": "node cli.js --headings-only",
"links-check": "node cli.js --links-check",
"cleanup-only": "node cli.js --cleanup-only",
"no-backup": "node cli.js --no-backup",
"cleanup-backups": "find . -name '*.backup' -type f -delete",
"test": "node test-package.js",
"test-enhanced-alt": "node test-enhanced-alt.js",
"demo": "node cli.js --dry-run demo",
"demo-enhanced": "node cli.js --enhanced-alt --dry-run demo",
"demo-creative": "node cli.js --enhanced-alt --alt-creativity creative --include-emotions --dry-run demo",
"prepublishOnly": "npm run test"
},
"keywords": [
"accessibility",
"a11y",
"html",
"automation",
"alt-text",
"role-attributes",
"lang-attributes",
"wcag",
"axe",
"form-labels",
"button-names",
"link-names",
"landmarks",
"heading-analysis",
"aria-label",
"context-aware",
"smart-alt-text",
"accessibility-fixer",
"html-accessibility",
"gbu",
"comprehensive",
"individual-fixes",
"backup-safe",
"dry-run"
],
"author": "GBU Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dangpv94/gbu-accessibility-tool.git"
},
"homepage": "https://github.com/dangpv94/gbu-accessibility-tool#readme",
"bugs": {
"url": "https://github.com/dangpv94/gbu-accessibility-tool/issues"
},
"files": [
"lib/",
"index.js",
"cli.js",
"example.js",
"demo/",
"README.md",
"README-vi.md",
"CHANGELOG.md",
"QUICK_START.md",
"PACKAGE_SUMMARY.md",
"ENHANCED_ALT_FEATURES.md",
"LICENSE"
],
"dependencies": {
"chalk": "^4.1.2"
},
"engines": {
"node": ">=12.0.0"
},
"publishConfig": {
"access": "public"
}
}