-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.58 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": "render-agents-workshop",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "One agentic code-review use case, three Render execution substrates: in-process, queue+worker, and Workflows.",
"license": "MIT",
"engines": {
"node": ">=22.12.0"
},
"workspaces": [
"shared/*",
"packages/naive-agent",
"packages/queue-agents",
"packages/workflow-agents"
],
"scripts": {
"setup": "node scripts/setup-attendee.js",
"typecheck": "npm run typecheck --workspaces --if-present && tsc -p tests/tsconfig.json",
"test": "AGENT_MODEL=mock RENDER_USE_LOCAL_DEV=true node --import tsx --test \"tests/**/*.test.ts\"",
"test:unit": "AGENT_MODEL=mock node --import tsx --test \"tests/unit/**/*.test.ts\"",
"test:integration": "AGENT_MODEL=mock RENDER_USE_LOCAL_DEV=true node --import tsx --test \"tests/integration/**/*.test.ts\"",
"test:e2e": "AGENT_MODEL=mock RENDER_USE_LOCAL_DEV=true node --import tsx --test \"tests/e2e/**/*.test.ts\"",
"test:worker": "AGENT_MODEL=mock node --import tsx --test \"tests/integration/worker-kv.test.ts\"",
"naive:dev": "npm run dev --workspace @workshop/naive-agent",
"queue:web": "npm run web --workspace @workshop/queue-agents",
"queue:worker": "npm run worker --workspace @workshop/queue-agents",
"docker:up": "docker compose up --build",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f"
},
"dependencies": {
"tsx": "^4.20.5",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.6.3"
}
}