-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.79 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.79 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@braintrust/proxy",
"version": "0.0.7",
"description": "A proxy server that load balances across AI providers.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"clean": "rm -r dist/*",
"test": "vitest run"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"module": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./edge": {
"types": "./edge/dist/index.d.ts",
"import": "./edge/dist/index.mjs",
"module": "./edge/dist/index.mjs",
"require": "./edge/dist/index.js"
},
"./schema": {
"types": "./schema/dist/index.d.ts",
"import": "./schema/dist/index.mjs",
"module": "./schema/dist/index.mjs",
"require": "./schema/dist/index.js"
},
"./utils": {
"types": "./utils/dist/index.d.ts",
"import": "./utils/dist/index.mjs",
"module": "./utils/dist/index.mjs",
"require": "./utils/dist/index.js"
}
},
"files": [
"dist/**/*",
"edge/dist/**/*",
"schema/dist/**/*"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"homepage": "https://www.braintrust.dev/docs/guides/proxy",
"repository": {
"type": "git",
"url": "git+https://github.com/braintrustdata/braintrust-proxy.git"
},
"bugs": {
"url": "https://github.com/braintrustdata/braintrust-proxy/issues"
},
"keywords": [
"ai",
"proxy",
"vercel",
"cloudflare",
"workers",
"edge",
"openai",
"lambda",
"express"
],
"devDependencies": {
"@types/content-disposition": "^0.5.8",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.10.5",
"@types/uuid": "^9.0.7",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"esbuild": "^0.25.0",
"npm-run-all": "^4.1.5",
"tsup": "^8.4.0",
"typescript": "5.5.4",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.9",
"yargs": "^17.7.2"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@apidevtools/json-schema-ref-parser": "^11.9.1",
"@aws-sdk/client-bedrock-runtime": "^3.738.0",
"@braintrust/core": "^0.0.85",
"@breezystack/lamejs": "^1.2.7",
"@google/generative-ai": "^0.24.0",
"@opentelemetry/api": "^1.7.0",
"@opentelemetry/core": "^1.19.0",
"@opentelemetry/resources": "^1.19.0",
"@opentelemetry/sdk-metrics": "^1.19.0",
"ai": "2.2.37",
"cache-control-parser": "^2.0.6",
"content-disposition": "^0.5.4",
"date-fns": "^4.1.0",
"eventsource-parser": "^1.1.1",
"jose": "^5.9.6",
"jsonwebtoken": "^9.0.2",
"openai": "4.89.0",
"uuid": "^9.0.1",
"zod": "^3.22.4"
}
}