generated from zirkelc/template-single-typescript
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.59 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.59 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "ai-retry",
"version": "1.3.0",
"description": "Retry and fallback mechanisms for AI SDK",
"packageManager": "pnpm@10.0.0",
"types": "./dist/index.d.mts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": "./dist/index.mjs",
"./retryables": "./dist/retryables/index.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "pnpm build && pnpm typecheck",
"build": "tsdown",
"test": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check . --write",
"prepare": "husky"
},
"keywords": [
"ai",
"ai-sdk",
"retry",
"fallback"
],
"author": "Chris Cook",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zirkelc/ai-retry.git"
},
"peerDependencies": {
"ai": "6.x"
},
"devDependencies": {
"@ai-sdk/anthropic": "3.0.23",
"@ai-sdk/azure": "3.0.19",
"@ai-sdk/gateway": "3.0.23",
"@ai-sdk/google": "^3.0.33",
"@ai-sdk/groq": "3.0.15",
"@ai-sdk/openai": "3.0.19",
"@ai-sdk/test-server": "1.0.3",
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "^2.3.13",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^25.0.10",
"ai": "6.0.50",
"husky": "^9.1.7",
"msw": "^2.12.7",
"pkg-pr-new": "^0.0.62",
"publint": "^0.3.17",
"tsdown": "^0.20.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"@ai-sdk/provider": "3.0.5",
"@ai-sdk/provider-utils": "4.0.9",
"zod": "^4.3.6"
}
}