-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.56 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
{
"name": "@braintrust/trace-opencode",
"version": "0.0.5",
"description": "Automatically trace OpenCode conversations to Braintrust. Captures user messages, assistant responses, and tool calls for observability.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "bun build src/index.ts --outdir dist --target bun --format esm",
"dev": "bun run --watch src/index.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit",
"lint": "biome lint src",
"lint:fix": "biome lint --write src",
"format": "biome format --write src",
"check": "biome check src",
"check:fix": "biome check --write src",
"check:fix-unsafe": "biome check --write --unsafe src",
"clean": "rm -rf dist",
"prepublishOnly": "bun run build"
},
"keywords": [
"opencode",
"braintrust",
"llm",
"tracing",
"observability",
"evaluation"
],
"author": "Braintrust",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/braintrustdata/braintrust-opencode-plugin"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md"
],
"dependencies": {
"braintrust": "^0.0.185",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@opencode-ai/plugin": "^1.1.14",
"@opencode-ai/sdk": "^1.1.14",
"@types/bun": "^1.1.14",
"typescript": "^5.7.2"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0",
"@opencode-ai/sdk": ">=1.0.0"
}
}