-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.36 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.36 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "modular-crew",
"version": "0.1.0",
"description": "Declarative agent teams with DAG execution and context routing. Define what each agent knows.",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"crew": "dist/bin/crew.js"
},
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
},
"./context": {
"import": "./dist/src/context/index.js",
"types": "./dist/src/context/index.d.ts"
}
},
"files": [
"dist/",
"templates/",
"schema/"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"dev": "npx tsx bin/crew.ts",
"crew": "npx tsx bin/crew.ts"
},
"dependencies": {
"better-sqlite3": "^11.0.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"eventsource-parser": "^3.0.0",
"expr-eval": "^2.0.2",
"gpt-tokenizer": "^3.0.0",
"ora": "^8.0.0",
"ulid": "^2.3.0",
"yaml": "^2.4.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0"
},
"keywords": [
"ai-agents",
"multi-agent",
"orchestration",
"context-routing",
"depth-packing",
"declarative",
"yaml",
"llm"
],
"license": "MIT",
"engines": {
"node": ">=18"
}
}