-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 856 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 856 Bytes
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
{
"name": "@braintrust/ai-proxy-wrangler",
"version": "0.0.0",
"private": true,
"main": "./dist/lib.mjs",
"scripts": {
"deploy": "wrangler deploy",
"dev": "wrangler dev --port 8787 --inspector-port 9299",
"start": "wrangler dev",
"watch": "tsup --watch --dts",
"build": "tsup --clean --dts"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250810.0",
"itty-router": "^3.0.12",
"tsup": "^8.4.0",
"typescript": "^5.0.4",
"wrangler": "^4.28.1"
},
"dependencies": {
"braintrust": "^0.3.7",
"@braintrust/proxy": "workspace:*",
"openai": "^6.3.0",
"@opentelemetry/api": "1.9.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.204.0",
"@opentelemetry/resources": "^2.0.0",
"@opentelemetry/sdk-metrics": "^2.1.0",
"dotenv": "^16.3.1",
"zod": "3.25.34"
}
}