@xuhaojun/githunk 0.1.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/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@xuhaojun/githunk",
3
+ "version": "0.1.0",
4
+ "description": "A review-first Git TUI combining lazygit's everyday Git workflow with focused hunk review.",
5
+ "type": "module",
6
+ "bin": {
7
+ "githunk": "bin/githunk.js"
8
+ },
9
+ "files": [
10
+ "bin",
11
+ "dist",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "scripts": {
16
+ "start": "bun run src/main.ts",
17
+ "dev": "bun --watch src/main.ts",
18
+ "build": "bun build src/cli.ts --target=node --format=esm --packages=external --outfile=dist/githunk.js --banner '#!/usr/bin/env node'",
19
+ "prepack": "bun run build",
20
+ "pack:check": "npm pack --dry-run",
21
+ "spike:selection": "bun run spikes/selection/src/main.ts",
22
+ "test": "bun test --path-ignore-patterns='learn-projects/**'",
23
+ "typecheck": "tsc --noEmit",
24
+ "check": "bun run typecheck && bun run test",
25
+ "bench:review-load": "bun run benchmarks/review-document-load.ts",
26
+ "bench:review-rows": "bun run benchmarks/review-row-plan.ts",
27
+ "bench:review-reconcile": "bun run benchmarks/review-reconcile.ts"
28
+ },
29
+ "keywords": [
30
+ "git",
31
+ "tui",
32
+ "code-review",
33
+ "cli"
34
+ ],
35
+ "homepage": "https://github.com/XuHaoJun/githunk#readme",
36
+ "bugs": {
37
+ "url": "https://github.com/XuHaoJun/githunk/issues"
38
+ },
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "git+https://github.com/XuHaoJun/githunk.git"
42
+ },
43
+ "license": "MIT",
44
+ "engines": {
45
+ "node": ">=26.1.0"
46
+ },
47
+ "packageManager": "bun@1.4.0",
48
+ "publishConfig": {
49
+ "access": "public"
50
+ },
51
+ "dependencies": {
52
+ "@opentui/core": "0.5.6",
53
+ "@opentui/react": "0.5.6",
54
+ "@pierre/diffs": "1.3.5",
55
+ "react": "19.2.8",
56
+ "zod": "^4.4.3"
57
+ },
58
+ "devDependencies": {
59
+ "@types/bun": "1.4.0",
60
+ "@types/react": "19.2.8",
61
+ "typescript": "5.9.2"
62
+ }
63
+ }