-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.57 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
{
"name": "@bedrockio/ai",
"version": "0.16.0",
"description": "Bedrock wrapper for common AI chatbots.",
"type": "module",
"scripts": {
"test": "vitest run",
"test:live": "node --env-file=.env.live ./node_modules/.bin/vitest run",
"lint": "eslint",
"build": "scripts/build",
"eject": "scripts/eject",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json && tsc-alias -f -p tsconfig.esm.json",
"build:types": "tsc -p tsconfig.types.json",
"prepublish": "yarn build"
},
"types": "types/index.d.ts",
"main": "./dist/cjs/index.js",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"contributors": [
{
"name": "Andrew Plummer",
"email": "andrew@rekall.ai"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bedrockio/router"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.104.2",
"@anthropic-ai/vertex-sdk": "^0.19.0",
"@bedrockio/templates": "^0.3.1",
"@google/genai": "^1.34.0",
"openai": "^6.3.0",
"partial-json": "^0.1.7"
},
"devDependencies": {
"@bedrockio/eslint-plugin": "^1.2.2",
"@bedrockio/prettier-config": "^1.0.2",
"@bedrockio/yada": "^1.11.0",
"eslint": "^9.36.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"files": [
"dist/**",
"types/**",
"README.md",
"CHANGELOG.md"
],
"volta": {
"node": "22.20.0",
"yarn": "1.22.22"
}
}