-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 772 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 772 Bytes
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
{
"name": "vera-reference-implementation",
"version": "2.0.0",
"description": "VERA — Verifiable Enforcement for Runtime Agents — Reference Implementation by Berlin AI Labs. Unified facade for 12 deployed trust services.",
"private": true,
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"validate": "npm run typecheck && npm run test"
},
"keywords": [
"vera",
"verifiable-enforcement",
"zero-trust",
"ai-agents",
"proof-of-execution"
],
"author": "Berlin AI Labs",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.2.2",
"canonicalize": "^2.1.0",
"tweetnacl": "^1.0.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}