-
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.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.11 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": "async-agent",
"version": "0.1.0",
"private": true,
"description": "Autonomous async agent system with multi-provider LLM support",
"scripts": {
"dev": "pnpm --filter backend dev",
"dev:web": "pnpm --filter @async-agent/webapp dev",
"build": "pnpm -r build",
"build:web": "pnpm --filter @async-agent/webapp build",
"test": "pnpm -r test",
"lint": "pnpm -r lint",
"clean": "pnpm -r clean && rm -rf node_modules",
"generate": "pnpm --filter @async-agent/api-js-client run generate && pnpm --filter @async-agent/api-py-client run generate",
"test:check-generate": "pnpm generate && git diff --exit-code packages/shared/js-client/src packages/shared/python-client/async_agent_client"
},
"keywords": [
"ai",
"agent",
"llm",
"automation"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"devDependencies": {
"@types/node": "^22.18.13",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.2",
"ora": "^9.0.0",
"yaml": "^2.8.1"
}
}