-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.5 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": "@nutthead/cc-statusline",
"description": "Status Line for Claude Code",
"version": "0.4.0",
"type": "module",
"bin": {
"cc-statusline": "bin/install.js"
},
"private": false,
"license": "MIT",
"author": {
"name": "Behrang Saeedzadeh",
"email": "hello@behrang.org",
"url": "https://behrang.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nutthead/statusline.git"
},
"bugs": {
"url": "https://github.com/nutthead/statusline/issues"
},
"homepage": "https://github.com/nutthead/statusline#readme",
"keywords": [
"claude",
"claude code",
"statusline"
],
"scripts": {
"build:binary": "mkdir -p target && bun build --compile ./index.ts --outfile target/statusline",
"build:cli": "bun build ./src/cli.ts --outfile ./bin/install.js --target node",
"prepublishOnly": "bun run build:cli",
"install:binary": "cp target/statusline ~/.claude/",
"biome:format": "bunx biome format --write",
"biome:lint": "bunx biome lint --fix"
},
"devDependencies": {
"@biomejs/biome": "^2.3.15",
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@logtape/file": "^1.3.6",
"@logtape/logtape": "^1.3.6",
"chalk": "^5.6.2",
"meow": "^14.0.0",
"neverthrow": "^8.2.0",
"simple-git": "^3.30.0",
"terminal-size": "^4.0.1",
"ts-pattern": "^5.9.0",
"type-fest": "^5.3.1",
"zod": "^4.3.5"
},
"engines": {
"bun": ">=1.3.3"
}
}