-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.55 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.55 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
54
55
56
57
58
59
60
61
62
63
{
"name": "@veritasacta/verify",
"version": "0.6.1",
"mcpName": "io.github.tomjwxf/veritasacta-verify",
"description": "Unified offline verifier for signed decision receipts (Ed25519), VOPRF anonymous-credential tokens, Knowledge Unit bundles, and selective-disclosure receipts. Sigil-verified canonical release.",
"license": "Apache-2.0",
"type": "module",
"bin": {
"verify-artifact": "cli.js"
},
"files": [
"cli.js",
"src/",
"sigil.json",
"README.md",
"CHANGELOG.md",
"THREAT-MODEL.md",
"SECURITY.md",
"ERRORS.md",
"ROADMAP.md",
"samples/",
"test/conformance.js"
],
"dependencies": {
"@veritasacta/artifacts": "^0.2.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"verify",
"ed25519",
"voprf",
"receipts",
"knowledge-units",
"selective-disclosure",
"veritasacta",
"scopeblind",
"audit",
"offline-verification",
"sigil",
"mcp",
"protect-mcp",
"agent-safety",
"agent-governance"
],
"scripts": {
"test": "node --test test/unit/*.test.js test/integration/*.test.js",
"test:conformance": "node test/conformance.js",
"self-test": "node cli.js --self-test",
"self-check": "node cli.js --self-check",
"capabilities": "node cli.js --capabilities",
"generate-sigil": "node generate-sigil.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VeritasActa/verify.git"
},
"homepage": "https://veritasacta.com",
"bugs": {
"url": "https://github.com/VeritasActa/verify/issues"
}
}