-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 953 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 953 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
{
"name": "agentsflow",
"private": true,
"version": "0.0.0",
"description": "A graph-based flow framework for AI agent orchestration",
"packageManager": "pnpm@9.15.4",
"scripts": {
"build": "pnpm -r --stream run build",
"build:contracts": "pnpm --filter @agentsflow/agent-contracts --filter @agentsflow/shared-contracts --filter @agentsflow/flow-schema run build",
"test": "pnpm -r --stream run test",
"test:contracts": "pnpm --filter @agentsflow/agent-contracts --filter @agentsflow/shared-contracts --filter @agentsflow/flow-schema run test",
"lint": "pnpm -r --stream run lint",
"typecheck": "pnpm -r --stream run typecheck",
"clean": "pnpm -r --stream run clean",
"dev": "pnpm dev:web",
"dev:web": "pnpm --filter @agentsflow/web run dev",
"dev:desktop": "pnpm --filter @agentsflow/desktop run dev"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"typescript": "5"
}
}