-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1019 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1019 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
37
38
39
40
41
42
43
44
45
46
{
"name": "@ageflow/executor",
"version": "0.7.0",
"description": "DAG executor, loop runner, session manager, HITL, budget tracker, and preflight checks for ageflow",
"homepage": "https://github.com/Neftedollar/ageflow/tree/master/packages/executor",
"type": "module",
"private": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": ["dist"],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"lint": "biome check src/"
},
"dependencies": {
"@ageflow/core": "^0.6.0",
"zod-to-json-schema": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"vitest": "^2.1.0",
"zod": "^3.23.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Neftedollar/ageflow.git"
},
"keywords": [
"ai",
"agents",
"workflow",
"llm",
"dsl",
"typescript",
"claude",
"openai",
"multi-agent"
],
"license": "MIT"
}