forked from zeative/zaflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.43 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.43 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
65
66
67
{
"name": "zaflow",
"description": "ZaFlow - Lightweight AI Flow Orchestration Library",
"version": "1.0.3",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"author": "zaadevofc",
"repository": {
"url": "git+https://github.com/zeative/zaflow.git"
},
"scripts": {
"test": "bun run examples/test.ts",
"build": "tsup",
"r:patch": "npm run build && npm version patch && npm publish",
"r:minor": "npm run build && npm version minor && npm publish",
"r:major": "npm run build && npm version major && npm publish"
},
"keywords": [
"ai",
"flow",
"orchestration",
"llm",
"agent",
"automation"
],
"devDependencies": {
"@types/node": "^25.0.0",
"groq-sdk": "^0.37.0",
"ollama": "^0.6.3",
"openai": "^6.10.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"zod": "^4.1.13"
},
"peerDependencies": {
"groq-sdk": ">=0.3.0",
"ollama": ">=0.5.0",
"openai": ">=4.0.0"
},
"peerDependenciesMeta": {
"openai": {
"optional": true
},
"groq-sdk": {
"optional": true
},
"ollama": {
"optional": true
}
},
"packageManager": "pnpm@10.24.0",
"engines": {
"node": ">=20.0.0"
}
}