-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.38 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
{
"name": "omiai",
"description": "OmiAI - A highly opinionated AI SDK with auto-model selection, built-in reasoning and curated tools",
"homepage": "https://github.com/JigsawStack/omiai",
"repository": {
"type": "git",
"url": "git+https://github.com/JigsawStack/omiai.git"
},
"bugs": {
"url": "https://github.com/JigsawStack/omiai/issues"
},
"keywords": ["framework", "ai", "llm", "react"],
"type": "module",
"version": "0.0.8",
"packageManager": "yarn@1.22.22",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": ["dist/**"],
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build": "pkgroll --minify --src=./",
"format": "biome check --write ."
},
"dependencies": {
"@ai-sdk/anthropic": "^1.1.2",
"@ai-sdk/deepinfra": "^0.1.5",
"@ai-sdk/google": "^1.1.2",
"@ai-sdk/groq": "^1.1.2",
"@ai-sdk/openai": "^1.1.9",
"ai": "^4.1.5",
"jigsawstack": "^0.0.23",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.10",
"dotenv": "^16.4.7",
"pkgroll": "^2.6.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}