-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1000 Bytes
/
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
{
"name": "fluent-ai",
"description": "A lightweight AI toolkit for multiple platforms",
"version": "0.2.1",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "bun run build.ts",
"prepublishOnly": "bun run build"
},
"files": [
"dist"
],
"dependencies": {
"eventsource-parser": "^3.0.0",
"partial-json": "^0.1.7",
"zod-to-json-schema": "^3.23.5"
},
"keywords": [
"ai",
"openai",
"llm",
"bun",
"ollama",
"authropic",
"zod"
],
"devDependencies": {
"@types/bun": "latest",
"bun-plugin-dts": "^0.3.0",
"zod": "^3.23.8"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/modalityml/fluent-ai.git"
}
}