-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "agentflow",
"version": "0.8.0",
"description": "AI agent workflow orchestration engine with multi-model support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": { "agentflow": "./dist/cli/index.js" },
"scripts": {
"build": "tsc",
"dev": "tsx watch src/cli/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"bench": "tsx benchmarks/engine.bench.ts",
"lint": "eslint src/",
"format": "prettier --write src/"
},
"dependencies": {
"openai": "^4.55.0",
"@anthropic-ai/sdk": "^0.27.0",
"zod": "^3.23.8",
"commander": "^12.1.0",
"yaml": "^2.5.0",
"chalk": "^5.3.0",
"ora": "^8.0.1",
"handlebars": "^4.7.8"
},
"devDependencies": {
"typescript": "^5.5.4",
"tsx": "^4.16.2",
"vitest": "^2.0.4",
"@types/node": "^20.14.12",
"eslint": "^8.57.0",
"prettier": "^3.3.3"
},
"keywords": ["ai", "agent", "workflow", "llm", "orchestration", "openai", "anthropic"],
"license": "MIT"
}