package.json•1.18 kB
{
"name": "a11y-color-contrast-mcp",
"version": "1.0.1",
"description": "A simple MCP (Model Context Protocol) server for checking accessible color pairings.",
"main": "index.js",
"homepage": "https://github.com/ryelle/a11y-color-contrast-mcp/",
"repository": "git+https://github.com/ryelle/a11y-color-contrast-mcp.git",
"bugs": {
"url": "https://github.com/ryelle/a11y-color-contrast-mcp/issues"
},
"keywords": [
"accessibility",
"a11y",
"colors",
"color-contrast",
"wcag",
"mcp",
"ai-tools"
],
"author": "ryelle",
"license": "MIT",
"type": "module",
"bin": "./build/index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"prestdio": "npm run build",
"stdio": "node ./build/index.js",
"prehttp": "npm run build",
"http": "node ./build/http.js",
"test": "jest"
},
"files": [
"build"
],
"dependencies": {
"@ctrl/tinycolor": "^4.1.0",
"@modelcontextprotocol/sdk": "^1.17.5",
"express": "^5.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^24.3.1",
"jest": "^29.7.0",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2"
}
}