forked from xfbaby/claude-traced
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.85 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
{
"name": "claude-traced",
"description": "Electron + ACP + OpenTelemetry — 全链路可观测的 Claude Agent 桌面应用",
"version": "0.1.0",
"private": true,
"packageManager": "bun@1.3.14",
"author": "xfbaby",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:xfbaby/claude-traced.git"
},
"bugs": {
"url": "https://github.com/xfbaby/claude-traced/issues"
},
"homepage": "https://github.com/xfbaby/claude-traced#readme",
"keywords": [
"claude",
"anthropic",
"agent",
"acp",
"opentelemetry",
"tracing",
"electron",
"react",
"observability",
"monorepo",
"bun"
],
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bun run scripts/dev.ts",
"dev:web": "bun run --cwd apps/web dev",
"dev:api": "bun --watch apps/api/src/index.ts",
"dev:desktop": "bun run scripts/dev-desktop.ts",
"build:desktop": "bun run scripts/build-desktop.ts",
"build": "bun run build:shared && bun run build:packages && bun run build:apps",
"build:shared": "bun run --cwd packages/shared build",
"build:packages": "bun run --cwd packages/tracing-claude build && bun run --cwd packages/tracing-react build && bun run --cwd packages/domain-agent build && bun run --cwd packages/domain-conversation build && bun run --cwd packages/domain-tool build && bun run --cwd packages/domain-user build",
"build:apps": "bun run --cwd apps/api build && bun run --cwd apps/web build",
"check:env": "bun run scripts/check-env.ts",
"seed": "bun run scripts/seed-agents.ts",
"lint": "bun x tsc --noEmit",
"typecheck": "bun x tsc --noEmit",
"clean": "rm -rf **/dist **/node_modules",
"preinstall": "npx only-allow bun"
},
"devDependencies": {
"typescript": "^5.7.0"
},
"engines": {
"bun": ">=1.3.0",
"node": ">=20.0.0"
}
}