-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 766 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "foundlab-audit-author-tools",
"version": "0.1.0-draft",
"description": "Evidence Artifact Compiler verifier (DML-1 draft). Compiles cryptographically verifiable audit artifacts from deterministic execution evidence.",
"type": "module",
"engines": { "node": ">=22" },
"scripts": {
"typecheck": "tsc -p tsconfig.json",
"verify": "node --experimental-strip-types src/cli.ts verify",
"build-example": "node --experimental-strip-types src/build-example.ts",
"selftest": "node --experimental-strip-types src/selftest.ts"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1"
},
"devDependencies": {
"typescript": "^5.6.0",
"@types/node": "^22.0.0"
},
"license": "UNLICENSED",
"private": true
}