-
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.12 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.12 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": "@hwwwww/pulse",
"version": "0.6.12",
"description": "Lightweight Claude Code statusline",
"type": "module",
"bin": {
"pulse": "./dist/pulse.js"
},
"main": "./dist/index.js",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"keywords": [
"claude",
"claude-code",
"statusline",
"terminal",
"ai",
"bun"
],
"repository": {
"type": "git",
"url": "https://github.com/Hwwwww-dev/pulse"
},
"author": "hwwwww",
"license": "MIT",
"engines": {
"bun": ">=1.3"
},
"scripts": {
"build": "bun build src/cli/bin.ts --outfile dist/pulse.js --target bun --packages=external --minify && bun build src/index.ts --outfile dist/index.js --target bun --packages=external --minify",
"prepublishOnly": "bun run build",
"test": "bun test",
"dev": "bun run src/cli/bin.ts",
"typecheck": "bunx tsc --noEmit"
},
"dependencies": {
"zod": "^3.23.0",
"ink": "^5.0.0",
"react": "^18.3.0"
},
"devDependencies": {
"@types/react": "^18.3.0",
"bun-types": "^1.3.12",
"ink-testing-library": "^4.0.0",
"typescript": "^5.5.0"
}
}