-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.31 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "agent-event-protocol",
"version": "1.0.0",
"description": "Structured observability for AI agent systems. Capture, trace, and debug multi-agent workflows in real time.",
"main": "index.js",
"bin": {
"aep": "./src/cli.js"
},
"directories": {
"example": "examples"
},
"scripts": {
"test": "npm run test:unit && npm run test:integration",
"test:unit": "node --test tests/unit/*.test.js",
"test:integration": "node --test tests/integration/*.test.js",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"validate": "node src/cli-validate.js",
"ingest": "node src/server.js",
"prune": "node src/prune.js",
"export": "node src/export.js",
"dev": "nodemon src/server.js",
"emit:example": "node examples/emit-example.js",
"demo:support": "node examples/demos/support-agent-demo.js",
"demo:itops": "node examples/demos/itops-agent-demo.js",
"demo:research": "node examples/demos/research-agent-demo.js",
"demo:subagent": "node examples/demos/subagent-research-demo.js",
"demo:logging": "node examples/demos/logging-demo.js",
"demo:all": "npm run demo:support && npm run demo:itops && npm run demo:research && npm run demo:subagent && npm run demo:logging",
"postinstall": "npm rebuild better-sqlite3"
},
"keywords": [
"agent",
"agentic-ai",
"observability",
"monitoring",
"multi-agent",
"distributed-tracing",
"event-protocol",
"debugging",
"structured-logging",
"dashboard",
"orchestration",
"workflow-tracing"
],
"author": "Surabhi Pradhan",
"license": "MIT",
"homepage": "https://github.com/surpradhan/agent-event-protocol#readme",
"repository": {
"type": "git",
"url": "https://github.com/surpradhan/agent-event-protocol.git"
},
"bugs": {
"url": "https://github.com/surpradhan/agent-event-protocol/issues"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"devDependencies": {
"eslint": "^9.0.0",
"nodemon": "^3.1.14"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1068.0",
"@aws-sdk/lib-storage": "^3.1068.0",
"@dsnp/parquetjs": "^1.8.7",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"better-sqlite3": "^12.8.0",
"express": "^5.2.1",
"pdfkit": "^0.19.1",
"pg": "^8.13.1",
"pino": "^10.3.1"
}
}