-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
63 lines (63 loc) · 1.37 KB
/
package.json
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
{
"name": "fabrice-ai",
"description": "A lightweight, functional, and composable framework for building AI agents.",
"author": "Mike Grabowski <[email protected]>",
"contributors": [
"Piotr Karwatka <[email protected]>"
],
"scripts": {
"prepare": "bun run build",
"build": "tsup-node"
},
"exports": {
"./*": {
"bun": "./src/*.ts",
"types": {
"import": "./dist/*.d.ts",
"require": "./dist/*.d.cts"
},
"require": "./dist/*.cjs",
"import": "./dist/*.js"
},
"./providers/*": {
"bun": "./src/providers/*.ts",
"types": {
"import": "./dist/providers/*.d.ts",
"require": "./dist/providers/*.d.cts"
},
"require": "./dist/providers/*.cjs",
"import": "./dist/providers/*.js"
}
},
"type": "module",
"dependencies": {
"chalk": "^5.3.0",
"dedent": "^1.5.3",
"openai": "^4.76.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.24.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/callstackincubator/ai-agent-framework.git",
"directory": "packages/framework"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"ai",
"ai agents",
"ai tools"
],
"files": [
"dist",
"src",
"README.md"
],
"engines": {
"node": ">=22"
},
"version": "0.5.2"
}