-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.42 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.42 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@braintrust/proxy",
"version": "0.0.9",
"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"
},
"./types": {
"types": "./types/dist/index.d.ts",
"import": "./types/dist/index.mjs",
"module": "./types/dist/index.mjs",
"require": "./types/dist/index.js"
},
"./providers": {
"types": "./providers/dist/index.d.ts",
"import": "./providers/dist/index.mjs",
"module": "./providers/dist/index.mjs",
"require": "./providers/dist/index.js"
}
},
"files": [
"dist/**/*",
"edge/dist/**/*",
"schema/dist/**/*",
"types/dist/**/*",
"providers/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.17.0",
"@types/uuid": "^9.0.7",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"esbuild": "^0.19.10",
"msw": "^2.8.2",
"npm-run-all": "^4.1.5",
"openapi-zod-client": "^1.18.3",
"skott": "^0.35.4",
"tsup": "^8.4.0",
"typescript": "5.9.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.9",
"yargs": "^17.7.2",
"zod-to-json-schema": "^3.24.6"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@aws-sdk/client-bedrock-runtime": "^3.806.0",
"@breezystack/lamejs": "^1.2.7",
"@openapi-contrib/json-schema-to-openapi-schema": "^4.2.0",
"@opentelemetry/api": "1.9.0",
"@opentelemetry/core": "^2.1.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.204.0",
"@opentelemetry/resources": "^2.1.0",
"@opentelemetry/sdk-metrics": "^2.1.0",
"ai": "2.2.37",
"cache-control-parser": "^2.0.6",
"content-disposition": "^0.5.4",
"date-fns": "^4.1.0",
"dereference-json-schema": "^0.2.1",
"eventsource-parser": "^1.1.1",
"jose": "^5.9.6",
"jsonwebtoken": "^9.0.2",
"openai": "4.104.0",
"openapi-json-schema": "^2.0.0",
"uuid": "^9.0.1",
"zod": "^3.25.34"
}
}