-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.66 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.66 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
{
"name": "@howells/ai",
"version": "0.1.18",
"type": "module",
"description": "Unified AI client for all projects — Gateway, OpenRouter, direct providers, tiered language models, and retrieval models.",
"license": "MIT",
"packageManager": "pnpm@10.23.0",
"engines": {
"node": ">=22.18.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/howells/ai.git"
},
"files": [
"dist",
"README.md"
],
"bin": {
"ai": "dist/cli.mjs",
"howells-ai": "dist/cli.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./react": {
"types": "./dist/react.d.mts",
"default": "./dist/react.mjs"
},
"./models": {
"types": "./dist/models.d.mts",
"default": "./dist/models.mjs"
}
},
"scripts": {
"build": "tsdown",
"benchmark:build": "pnpm --filter @howells/ai-benchmark build",
"benchmark:dev": "pnpm --filter @howells/ai-benchmark dev",
"check-types": "tsc --noEmit",
"test": "bun test",
"test:live": "LIVE_AI_TESTS=1 bun test test/live.test.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.71",
"@ai-sdk/gateway": "^3.0.104",
"@ai-sdk/google": "^3.0.64",
"@ai-sdk/openai": "^3.0.53",
"@ai-sdk/react": "3.0.118",
"@howells/envy": "^0.3.7",
"@openrouter/ai-sdk-provider": "^2.9.0",
"ai": "6.0.116",
"voyage-ai-provider": "^3.0.0",
"zod": "^4.4.3"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"typescript": "^5 || ^6"
},
"devDependencies": {
"@types/node": "^25.6.0",
"tsdown": "^0.21.9",
"typescript": "^6.0.3"
}
}