-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1011 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
49
{
"name": "abso-ai",
"version": "0.0.8",
"module": "src/index.ts",
"description": "Abso AI SDK. Call LLMs using a single API.",
"type": "module",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/lunary-ai/abso.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js",
"require": "./dist/types.cjs"
}
},
"typesVersions": {
"*": {
"types": [
"./dist/types.d.ts"
]
}
},
"scripts": {
"build": "tsup"
},
"devDependencies": {
"@types/bun": "latest",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"prettier": {
"semi": false
},
"dependencies": {
"@anthropic-ai/sdk": "^0.36.3",
"@google/generative-ai": "^0.21.0",
"abso-ai": "^0.0.4",
"lunary": "^0.8.8",
"openai": "^4.83.0"
}
}