-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 822 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "simple-swarm",
"version": "0.1.0",
"description": "Simple test project for agent-relay SDK",
"type": "module",
"scripts": {
"test:1-connect": "node tests/01-connect.js",
"test:2-message": "node tests/02-send-message.js",
"test:3-spawn": "node tests/03-spawn-agent.js",
"test:4-release": "node tests/04-release-agent.js",
"test:5a": "node tests/05a-spawn-process.js",
"test:5b": "node tests/05b-worker-message.js",
"test:5c": "node tests/05c-shutdown.js",
"test:5-full": "node tests/05-full-flow.js",
"test:6-mcp-connect": "node tests/mcp/06-mcp-connect.js",
"test:7-mcp-message": "node tests/mcp/07-mcp-message.js",
"test:8-mcp-receive": "node tests/mcp/08-mcp-receive.js"
},
"dependencies": {
"@agent-relay/sdk": "file:../relay/packages/sdk"
}
}