-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.13 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
{
"name": "causallayer-verifier",
"version": "0.1.0",
"description": "Client-side verification CLI for CausalCertificateV1 — Ed25519 signature, Merkle tree, hash consistency, issuer trust, and anchor status checks.",
"keywords": [
"causallayer",
"faultkey",
"verification",
"ed25519",
"merkle",
"certificate",
"ai-liability",
"deterministic"
],
"license": "MIT",
"author": "FaultKey <engineering@faultkey.com>",
"repository": {
"type": "git",
"url": "https://github.com/smq9sn5jck-coder/causallayer-verifier"
},
"homepage": "https://faultkey.com/verify",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"causallayer-verifier": "./bin/cli.mjs"
},
"files": [
"dist",
"bin",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"typescript": "^5.4.0",
"vitest": "^4.1.7"
}
}