UNPKG

react-a11y-inspector

Version:

An advanced React accessibility inspection tool with real-time monitoring, screen reader simulation, and customizable rules.

80 lines (79 loc) 2.22 kB
{ "name": "react-a11y-inspector", "description": "An advanced React accessibility inspection tool with real-time monitoring, screen reader simulation, and customizable rules.", "version": "1.1.1", "main": "dist/index.js", "module": "src/index.js", "type": "module", "types": "dist/index.d.ts", "repository": { "type": "git", "url": "https://github.com/shahharshofficial/react-a11y-inspector.git" }, "homepage": "https://github.com/shahharshofficial/react-a11y-inspector", "bugs": { "url": "https://github.com/shahharshofficial/react-a11y-inspector/issues" }, "scripts": { "start": "webpack --config webpack.config.cjs --mode development", "build": "webpack --config webpack.config.cjs --mode production", "test": "jest --config jest.config.cjs", "lint": "eslint src", "prepare": "npm run build", "prepublishOnly": "npm run test && npm run lint && npm run build" }, "keywords": [ "react", "accessibility", "a11y", "npm-package", "screen-reader", "wcag", "jsx", "react-accessibility" ], "author": "Harsh Shah", "license": "MIT", "dependencies": { "html2canvas": "^1.4.1", "jspdf": "^2.5.2", "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", "tinycolor2": "^1.6.0" }, "devDependencies": { "@babel/core": "^7.26.0", "@babel/eslint-parser": "^7.25.9", "@babel/preset-env": "^7.26.0", "@babel/preset-react": "^7.26.3", "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^16.1.0", "babel-loader": "^9.2.1", "canvas": "^2.11.2", "eslint": "^9.16.0", "eslint-plugin-react": "^7.37.2", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "react-testing-library": "^8.0.1", "webpack": "^5.97.1", "webpack-cli": "^5.1.4" }, "eslintConfig": { "extends": "eslint:recommended", "parserOptions": { "ecmaVersion": 2021, "sourceType": "module", "ecmaFeatures": { "jsx": true } }, "rules": { "react/prop-types": "off" } }, "files": [ "dist", "src" ] }