-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 883 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 883 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
{
"name": "cctop",
"version": "0.8.0",
"description": "Live top-style monitor for Claude Code sessions",
"type": "module",
"bin": {
"cctop": "./cctop.ts"
},
"scripts": {
"start": "bun cctop.ts",
"dev": "bun --watch cctop.ts",
"test": "bun test",
"lint": "bun biome check --write . && bun tsc --noEmit",
"build": "mkdir -p bin && bun build cctop.ts --compile --outfile bin/cctop && rm -f .*.bun-build",
"clean": "rm -rf bin .*.bun-build",
"install-bin": "bun run build && mkdir -p \"${PREFIX:-$HOME/.local}/bin\" && install -m 0755 bin/cctop \"${PREFIX:-$HOME/.local}/bin/cctop\"",
"uninstall-bin": "rm -f \"${PREFIX:-$HOME/.local}/bin/cctop\""
},
"license": "Apache-2.0",
"engines": {
"bun": ">=1.4.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.9",
"@types/bun": "^1.4.0",
"typescript": "^7.0.2"
}
}