@weaaare/mcp-nvda-auditor 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@weaaare/mcp-nvda-auditor",
3
+ "version": "0.1.0",
4
+ "description": "MCP server for NVDA accessibility auditing — drives NVDA on Windows to test web pages with a real screen reader and generate structured WCAG findings",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "mcp-nvda-auditor": "dist/index.js"
9
+ },
10
+ "main": "dist/index.js",
11
+ "types": "dist/index.d.ts",
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "dependencies": {
16
+ "@guidepup/guidepup": "0.24.1",
17
+ "@modelcontextprotocol/sdk": "1.27.1",
18
+ "@weaaare/mcp-auditor-core": "^0.0.3"
19
+ },
20
+ "devDependencies": {
21
+ "@biomejs/biome": "2.4.6",
22
+ "@rstest/core": "0.9.0",
23
+ "@types/node": "25.3.5",
24
+ "typescript": "5.9.3",
25
+ "@weaaare/config": "0.0.0"
26
+ },
27
+ "keywords": [
28
+ "mcp",
29
+ "accessibility",
30
+ "a11y",
31
+ "nvda",
32
+ "screen-reader",
33
+ "windows",
34
+ "wcag",
35
+ "a11y-testing"
36
+ ],
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "git+https://github.com/weAAAre/a11y-agents-kit.git",
40
+ "directory": "packages/mcp-nvda-auditor"
41
+ },
42
+ "homepage": "https://github.com/weAAAre/a11y-agents-kit/tree/main/packages/mcp-nvda-auditor#readme",
43
+ "bugs": {
44
+ "url": "https://github.com/weAAAre/a11y-agents-kit/issues"
45
+ },
46
+ "author": "weAAAre <hola@weAAAre.com> (https://weAAAre.com)",
47
+ "engines": {
48
+ "node": ">=24"
49
+ },
50
+ "scripts": {
51
+ "build": "tsc",
52
+ "check-types": "tsc --noEmit",
53
+ "lint": "biome check .",
54
+ "dev": "tsc --watch",
55
+ "test": "rstest --passWithNoTests"
56
+ }
57
+ }