-
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.09 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.09 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": "holyjs-agent-runtime-workshop",
"version": "0.2.0",
"private": true,
"type": "module",
"engines": {
"node": ">=18"
},
"dependencies": {
"@ai-sdk/openai": "*",
"@google/adk": "^0.4.0",
"@google/genai": "*",
"ai": "*",
"n8n": "*",
"n8n-workflow": "*"
},
"overrides": {
"zod": "3.25.76",
"@opentelemetry/sdk-node": "0.205.0",
"@opentelemetry/exporter-metrics-otlp-http": "0.205.0",
"@opentelemetry/exporter-metrics-otlp-grpc": "0.205.0",
"@opentelemetry/exporter-metrics-otlp-proto": "0.205.0",
"@opentelemetry/exporter-logs-otlp-http": "0.205.0"
},
"n8n": {
"n8nNodesApiVersion": 1,
"nodes": [
"src/04-n8n/EmailRouter.node.js",
"src/04-n8n/AgentReliability.node.js"
]
},
"scripts": {
"start:n8n": "node src/04-n8n/start-local-n8n.js",
"start:01": "node src/01-standalone/run.js",
"start:02": "node src/02-sdk/run.js",
"start:03": "node src/03-orchestrator/run.js",
"start:04": "node src/04-n8n/print-instructions.js",
"start:05": "node src/05-security-observability/run.js"
}
}