-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "@zhangziheng/claude-peek",
"version": "0.3.17",
"description": "Process manager for Claude Code with TUI and CLI interface",
"type": "module",
"main": "dist/index.js",
"bin": {
"ccpeek": "dist/index.js"
},
"files": ["dist"],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"all": "pnpm format && pnpm typecheck && pnpm lint"
},
"keywords": ["claude", "tui", "terminal", "process-manager"],
"author": "ziheng",
"license": "MIT",
"dependencies": {
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"clipboardy": "^5.3.1",
"commander": "^14.0.3",
"ink": "^6.8.0",
"react": "^19.2.4",
"string-width": "^8.2.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/react": "^18.3.0",
"tsup": "^8.5.1",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shadowzzh/claude-peek.git"
},
"bugs": {
"url": "https://github.com/Shadowzzh/claude-peek/issues"
},
"homepage": "https://github.com/Shadowzzh/claude-peek#readme"
}