package.json•1.21 kB
{
"name": "magentaa11y-mcp",
"version": "1.0.0",
"description": "MCP server providing accessibility acceptance criteria from the MagentaA11y project",
"type": "module",
"bin": {
"magentaa11y-mcp": "./build/index.js"
},
"scripts": {
"build": "node build-all.js",
"build:mcp-only": "tsc",
"build:full": "node build-all.js",
"sync": "node sync-content.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"dev": "tsc --watch",
"start": "node build/index.js",
"start:http": "node build/http-server.js"
},
"keywords": [
"mcp",
"accessibility",
"a11y",
"wcag",
"model-context-protocol",
"express",
"rest-api"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"cors": "^2.8.5",
"express": "^4.21.2",
"fuse.js": "^7.0.0",
"gray-matter": "^4.0.3",
"remark": "^15.0.1",
"remark-parse": "^11.0.0",
"serverless-http": "^3.2.0",
"unified": "^11.0.4"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.25",
"@types/node": "^20.10.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}