-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "ai-fallback",
"version": "3.0.0",
"description": "Automatically switch AI SDK model provider when one of the providers has downtime",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/remorses/ai-fallback",
"scripts": {
"build": "tsc",
"prepublishOnly": "pnpm build",
"test": "doppler run -- vitest",
"watch": "tsc -w"
},
"files": [
"dist",
"src",
"esm"
],
"keywords": [],
"author": "Tommaso De Rossi, morse <beats.by.morse@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=22"
},
"peerDependencies": {
"@ai-sdk/provider": ">=4.0.0",
"@ai-sdk/provider-utils": ">=5.0.0"
},
"devDependencies": {
"@ai-sdk/provider": "4.0.0",
"@ai-sdk/provider-utils": "5.0.1",
"@ai-sdk/anthropic": "4.0.1",
"@ai-sdk/groq": "4.0.1",
"@ai-sdk/openai": "4.0.2",
"@changesets/cli": "^2.29.6",
"@types/node": "^24.3.0",
"ai": "7.0.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"zod": "^4.1.8"
}
}