-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.42 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.42 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "zaflow",
"description": "ZaFlow - Lightweight TypeScript library for building efficient AI agent workflows optimized for free-tier models",
"version": "1.2.0",
"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"
},
"./plugins": {
"types": "./dist/plugins/index.d.ts",
"require": "./dist/plugins/index.js",
"import": "./dist/plugins/index.mjs"
}
},
"author": "zaadevofc",
"repository": {
"url": "git+https://github.com/zeative/zaflow.git"
},
"scripts": {
"dev": "bun run examples/test.ts",
"build": "tsup",
"r:patch": "npm version patch && npm run build && npm publish",
"r:minor": "npm version minor && npm run build && npm publish",
"r:major": "npm version major && npm run build && npm publish"
},
"keywords": [
"ai",
"agent",
"workflow",
"llm",
"typescript",
"groq",
"ollama",
"openai",
"token-optimization",
"free-tier",
"agentic",
"autonomous",
"tool-calling"
],
"peerDependencies": {
"groq-sdk": "^0.5.0 || ^0.6.0 || ^0.7.0",
"ollama": "^0.5.0",
"openai": "^4.0.0",
"zod": "^3.22.0 || ^4.0.0"
},
"peerDependenciesMeta": {
"groq-sdk": {
"optional": true
},
"ollama": {
"optional": true
},
"openai": {
"optional": true
}
},
"dependencies": {
"async": "^3.2.6",
"async-mutex": "^0.5.0",
"chevrotain": "^11.0.3",
"compromise": "^14.14.5",
"didyoumean2": "^7.0.4",
"graphlib": "^2.1.8",
"handlebars": "^4.7.8",
"json-schema-to-typescript": "^15.0.4",
"jsonrepair": "^3.13.1",
"langfuse": "^3.38.6",
"levenshtein-edit-distance": "^3.0.1",
"lru-cache": "^11.0.0",
"nanoid": "^5.0.4",
"natural": "^8.0.1",
"object-hash": "^3.0.0",
"openai-function-calling-tools": "^6.8.0",
"p-queue": "^9.0.1",
"p-retry": "^6.2.0",
"promptfoo": "^0.120.8",
"string-similarity": "^4.0.4",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/node": "^20.10.0",
"groq-sdk": "^0.7.0",
"ollama": "^0.5.9",
"openai": "^4.73.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"zod": "^4.1.13"
},
"packageManager": "pnpm@10.24.0",
"engines": {
"node": ">=20.0.0"
}
}