-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.39 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
45
46
47
48
49
50
51
{
"name": "evidence-map",
"version": "0.3.2",
"private": true,
"description": "MCP-first review and evidence-mapping harness for AI-generated and human-drafted deliverables.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mattdweigand-sketch/evidence-map.git"
},
"bugs": {
"url": "https://github.com/mattdweigand-sketch/evidence-map/issues"
},
"homepage": "https://github.com/mattdweigand-sketch/evidence-map#readme",
"keywords": [
"ai",
"office",
"mcp",
"powerpoint",
"excel",
"verification",
"workflow",
"evidence-mapping",
"claims",
"review",
"agents"
],
"type": "module",
"scripts": {
"run": "node --experimental-strip-types scripts/run.ts",
"refresh": "node --experimental-strip-types scripts/refresh.ts",
"inspect": "node --experimental-strip-types scripts/inspect.ts",
"mcp": "node --experimental-strip-types src/mcp/server.ts",
"verify": "node --experimental-strip-types scripts/verify.ts",
"typecheck": "tsc --noEmit",
"test": "node --experimental-strip-types --test \"tests/**/*.test.ts\""
},
"engines": {
"node": ">=22.13.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"jszip": "^3.10.1",
"pdf-parse": "^2.4.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.9.1",
"typescript": "^6.0.3"
}
}