-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.09 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.09 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
{
"name": "@scopeblind/verify-mcp",
"version": "0.1.0",
"description": "MCP server for offline verification of ScopeBlind and Veritas Acta artifacts.",
"license": "MIT",
"type": "module",
"bin": {
"scopeblind-verify-mcp": "server.js"
},
"files": [
"server.js",
"README.md",
"server.json",
"samples/"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@veritasacta/artifacts": "^0.2.0",
"zod": "^3.24.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"scopeblind",
"veritasacta",
"artifact-verification",
"receipts",
"offline-verification"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ScopeBlind/verify-mcp.git"
},
"homepage": "https://scopeblind.com/verify",
"bugs": {
"url": "https://github.com/ScopeBlind/verify-mcp/issues"
},
"mcpName": "io.github.scopeblind/verify-mcp",
"scripts": {
"check": "node --check server.js",
"smoke": "node test/smoke.mjs",
"prepublishOnly": "npm run check && npm run smoke"
}
}