-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.34 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.34 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
{
"name": "agent-tracker-monorepo",
"version": "0.0.3",
"private": true,
"description": "Monorepo for Agent Tracker - TUI and Web dashboard for tracking Claude Code sessions",
"type": "module",
"workspaces": [
"packages/core",
"packages/tui",
"packages/web"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "cd packages/tui && npm run dev",
"dev:web": "cd packages/web && npm run dev",
"build": "npm run build:core && npm run build:tui && npm run build:mcp",
"build:core": "cd packages/core && npm run build",
"build:tui": "cd packages/tui && npm run build",
"build:web": "cd packages/web && npm run build",
"build:mcp": "cd mcp && tsc",
"start": "cd packages/tui && npm run start",
"start:web": "cd packages/web && npm run start",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"demo:session": "./scripts/test-session.sh",
"validate:work-summary": "tsx scripts/validate-work-summary.ts",
"debug:sessions": "tsx scripts/debug-sessions.ts",
"debug:timeline": "tsx scripts/debug-timeline.ts",
"docs:dev": "cd website && npm start",
"docs:build": "cd website && npm run build",
"docs:serve": "cd website && npm run serve",
"clean": "rm -rf packages/*/dist node_modules/.cache",
"verify:web-auth": "bash scripts/verify-web-auth.sh",
"verify:all": "npm run test && npm run verify:web-auth"
},
"keywords": [
"cli",
"tui",
"ink",
"typescript",
"claude",
"claude-code",
"session-tracking",
"monitoring",
"dashboard"
],
"author": "Agent Tracker Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wakeless/agent-tracker.git"
},
"bugs": {
"url": "https://github.com/wakeless/agent-tracker/issues"
},
"homepage": "https://github.com/wakeless/agent-tracker#readme",
"devDependencies": {
"@types/node": "^24.7.2",
"@types/react": "^19.2.2",
"@vitest/ui": "^3.2.4",
"ink-testing-library": "^4.0.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.1",
"ink": "^6.3.1",
"ink-markdown": "^1.0.4",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"react": "^19.2.0"
},
"overrides": {
"string-width": "^8.1.0"
}
}