-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1 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
{
"name": "agent-runtime-pattern",
"version": "0.1.0",
"description": "Dependency-zero reference pattern for durable, authority-gated AI agent runtimes.",
"type": "module",
"private": true,
"main": "./src/index.js",
"exports": "./src/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/saucony/agent-runtime-pattern.git"
},
"homepage": "https://github.com/saucony/agent-runtime-pattern#readme",
"bugs": {
"url": "https://github.com/saucony/agent-runtime-pattern/issues"
},
"keywords": [
"agents",
"agent-runtime",
"event-log",
"state-machine",
"authority-gates",
"replay",
"liveness",
"developer-tools"
],
"sideEffects": false,
"scripts": {
"test": "node --test",
"proof": "node scripts/generate-sample-proof.js",
"scan": "node scripts/redaction-scan.js",
"verify": "node scripts/verify-public-ready.js"
},
"dependencies": {},
"devDependencies": {},
"engines": {
"node": ">=20"
}
}