package.json•2.02 kB
{
"name": "mcp-accessibility-scanner",
"version": "2.0.0",
"mcpName": "io.github.JustasMonkev/mcp-accessibility-scanner",
"description": "A Model Context Protocol (MCP) server for performing automated accessibility scans of web pages using Playwright and Axe-core",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"bin": {
"mcp-server-playwright": "cli.js"
},
"files": [
"lib/**/*",
"README.md",
"LICENSE",
"NOTICE.md"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"lint": "npm run eslint . && tsc --noEmit",
"watch": "tsc --watch",
"run-server": "node lib/browserServer.js",
"clean": "rm -rf lib",
"npm-publish": "npm run clean && npm run build && npm publish"
},
"dependencies": {
"@axe-core/playwright": "^4.10.2",
"@modelcontextprotocol/sdk": "^1.18.1",
"commander": "^14.0.1",
"debug": "^4.4.3",
"dotenv": "^17.2.2",
"mime": "^4.1.0",
"playwright": "^1.55.0",
"playwright-core": "^1.55.0",
"ws": "^8.18.3",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.36.0",
"@playwright/test": "^1.55.0",
"@stylistic/eslint-plugin": "^5.3.1",
"@types/chrome": "^0.1.12",
"@types/debug": "^4.1.12",
"@types/node": "^24.5.2",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"@typescript-eslint/utils": "^8.44.0",
"eslint": "^9.35.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-notice": "^1.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"keywords": [
"mcp",
"accessibility",
"a11y",
"wcag",
"axe-core",
"playwright",
"claude",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JustasMonkev/mcp-accessibility-scanner.git"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}