-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 872 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "@workshop/workflow-agents",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "workflow-agents — the same shared agents, run as Render Workflow tasks (per-agent isolation, retries, traces).",
"scripts": {
"typecheck": "tsc --noEmit",
"dev": "RENDER_USE_LOCAL_DEV=true node --env-file-if-exists=../../.env --env-file-if-exists=.env --import tsx src/server.ts",
"dev:workflows": "RENDER_USE_LOCAL_DEV=true RENDER_LOCAL_DEV_URL=http://127.0.0.1:8120 RENDER_API_KEY=local-dev render workflows dev -- npm run dev",
"start": "node --import tsx src/server.ts",
"start:workflow": "node --import tsx src/workflow.ts"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"@renderinc/sdk": "^0.5.0",
"@workshop/agent": "*",
"@workshop/db": "*",
"@workshop/ui": "*",
"hono": "^4.6.14"
}
}