-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.28 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "mcp-accessibility-helper",
"version": "1.0.0",
"description": "MCP server for accessibility checking of HTML navigation and dropdown elements",
"main": "dist/http-server.js",
"type": "module",
"scripts": {
"build": "tsc && npm run fix-imports",
"fix-imports": "node scripts/fix-imports.js",
"dev": "tsx src/server.ts",
"dev:http": "tsx src/http-server.ts",
"start": "node dist/server.js",
"start:http": "node dist/http-server.js",
"test": "npm run test:integration",
"test:integration": "node tests/test-integration.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rm -rf dist"
},
"keywords": ["mcp", "accessibility", "a11y", "wcag", "html"],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"jsdom": "^22.0.0",
"express": "^4.18.0",
"cors": "^2.8.5",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.0",
"@types/express": "^4.17.0",
"@types/cors": "^2.8.0",
"typescript": "^5.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"tsx": "^4.6.0"
},
"engines": {
"node": ">=18"
}
}