-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.14 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
{
"name": "traicebox",
"version": "0.1.32",
"description": "A local developer stack for tracing and session tracking around LLM and AI model workflows",
"license": "MIT",
"author": "Fardjad Davari <public@fardjad.com>",
"repository": {
"type": "git",
"url": "https://github.com/fardjad/traicebox"
},
"keywords": [
"ai",
"llm",
"tracing",
"observability",
"debugging",
"developer-tools",
"cli",
"session-tracking"
],
"type": "module",
"bin": {
"traicebox": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"traicebox": "TRAICEBOX_DEV=1 bun ./cli/index.ts",
"build": "bun build ./cli/index.ts --outdir ./dist --target node",
"prepack": "bun run build",
"test": "bun test",
"typecheck": "tsc",
"check": "biome check . && dprint check",
"fix": "biome check --write . && dprint fmt"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@types/bun": "^1.3.14",
"@types/yargs": "^17.0.35",
"dprint": "^0.55.2",
"typescript": "^7.0.2"
},
"dependencies": {
"picospinner": "^3.1.2",
"yaml": "^2.9.0",
"yargs": "^18.1.0"
}
}