-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.65 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
52
53
{
"name": "@frontiercompute/zcash-mcp",
"version": "1.4.0",
"description": "ZAP1 receipts for Zcash agents: verify workflows without trusting the server",
"type": "module",
"main": "dist/index.js",
"bin": {
"zcash-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"start": "node dist/index.js",
"dev": "tsc --watch",
"check:positioning": "node scripts/check-positioning.mjs",
"check:receipts": "node scripts/verify-receipt.mjs examples/operator-lifecycle-receipt.json && node scripts/verify-receipt.mjs examples/payment-receipt.json && node scripts/verify-receipt.mjs examples/counterparty-receipt.json && node scripts/verify-receipt.mjs examples/grant-proof-packet.json && node scripts/verify-receipt.mjs examples/compliance-audit-packet.json",
"test:offline": "npm run check:positioning && npm run check:receipts && npm run build && node scripts/test-stdio.mjs && node scripts/test-packed-install.mjs",
"test:live": "npm run build && node test/e2e.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
},
"files": [
"dist/",
"docs/",
"schemas/",
"examples/",
".well-known/",
"LICENSE",
"README.md"
],
"keywords": [
"zcash",
"mcp",
"zap1",
"attestation",
"proof",
"ai",
"agent"
],
"author": "Zk-nd3r <zk-nd3r@users.noreply.github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Frontier-Compute/zcash-mcp.git"
},
"mcpName": "io.github.Zk-nd3r/zcash-mcp"
}