cc-pulse 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +233 -0
- package/dist/cli.js +14940 -0
- package/package.json +47 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cc-pulse",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A customizable, real-time statusline for Claude Code",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"cc-pulse": "./dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"README.md",
|
|
12
|
+
"LICENSE"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"dev": "bun run src/cli.ts",
|
|
16
|
+
"build": "bun build src/cli.ts --outdir dist --target node",
|
|
17
|
+
"build:binary": "bun build src/cli.ts --compile --outfile claude-pulse",
|
|
18
|
+
"test": "bun test",
|
|
19
|
+
"lint": "bunx biome check .",
|
|
20
|
+
"lint:fix": "bunx biome check --write .",
|
|
21
|
+
"setup": "bun run src/setup.ts"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"claude",
|
|
25
|
+
"claude-code",
|
|
26
|
+
"statusline",
|
|
27
|
+
"cli",
|
|
28
|
+
"terminal",
|
|
29
|
+
"anthropic"
|
|
30
|
+
],
|
|
31
|
+
"author": "Alireza",
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@biomejs/biome": "^2.3.12",
|
|
35
|
+
"@types/bun": "^1.3.6",
|
|
36
|
+
"@types/node": "^25.0.10",
|
|
37
|
+
"typescript": "^5.7.0",
|
|
38
|
+
"zod": "^4.3.6"
|
|
39
|
+
},
|
|
40
|
+
"engines": {
|
|
41
|
+
"node": ">=18"
|
|
42
|
+
},
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "https://github.com/ali-nr/claude-pulse"
|
|
46
|
+
}
|
|
47
|
+
}
|