-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 952 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 952 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
{
"license": "MIT",
"packageManager": "yarn@1.22.22",
"keywords": [
"async",
"agents",
"ai",
"LLM",
"typescript",
"concurrency",
"lightweight",
"testable",
"agents framework",
"flow-control"
],
"scripts": {
"dev": "turbo run dev --no-cache",
"build": "turbo run build --no-cache",
"lint": "turbo run lint",
"clean": "rm -rf packages/*/dist node_modules/.cache/turbo",
"build:core": "yarn workspace async-agents-core build",
"build:app": "yarn workspace async-agents-app-example build",
"build:backend": "yarn workspace async-agents-backend-example build",
"buildAll": "yarn build:core && yarn build:app && yarn build:backend",
"dev:app": "yarn workspace async-agents-app-example dev",
"dev:backend": "yarn workspace async-agents-backend-example dev"
},
"devDependencies": {
"ts-node-dev": "^2.0.0",
"turbo": "^2.5.5",
"typescript": "^5.9.2"
}
}