-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1016 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1016 Bytes
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
{
"name": "wachai-router-agent",
"version": "0.2.0",
"description": "Hybrid agent to manage acp transactions",
"main": "agent.js",
"scripts": {
"dev": "nodemon --ignore test src/agent.ts",
"test:acp": "npx ts-node test/acp.test.ts",
"test:acp-buyer": "npx ts-node test/acp-buyer.test.ts",
"test:activeJobs": "npx ts-node test/activeJobs.test.ts",
"test:hybrid": "npx ts-node test/hybrid-agent.test.ts",
"test:router": "npx ts-node test/router-agent.test.ts",
"build": "tsc --outDir dist",
"clean": "rm -rf dist",
"start": "node dist/src/agent.js",
"test": "npx ts-node test/acp.test.ts"
},
"keywords": [
"acp",
"wachAI",
"agent"
],
"author": "QuillAI-Network",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.15.24",
"nodemon": "^3.1.10"
},
"dependencies": {
"@virtuals-protocol/acp-node": "^0.3.0-beta.14",
"dotenv": "^17.2.3",
"ioredis": "^5.6.1",
"openai": "^4.103.0",
"ts-node": "^10.9.2"
}
}