-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.78 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.78 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
60
61
62
63
64
65
66
67
68
69
{
"name": "hunkdiff",
"version": "0.1.0",
"description": "Desktop-inspired terminal diff viewer for understanding agent-authored changesets.",
"type": "module",
"packageManager": "bun@1.3.10",
"bin": {
"hunk": "dist/npm/main.js"
},
"files": [
"dist/npm",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
"SECURITY.md"
],
"scripts": {
"start": "bun run src/main.tsx",
"dev": "bun --watch src/main.tsx",
"build:npm": "bash ./scripts/build-npm.sh",
"build:bin": "bash ./scripts/build-bin.sh",
"install:bin": "bash ./scripts/install-bin.sh",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:tty-smoke": "bun test test/tty-render-smoke.test.ts",
"check:pack": "bun run ./scripts/check-pack.ts",
"prepack": "bun run build:npm",
"bench:bootstrap-load": "bun run test/bootstrap-load-benchmark.ts",
"bench:highlight-prefetch": "bun run test/adjacent-highlight-prefetch-benchmark.ts",
"bench:large-stream": "bun run test/large-stream-windowing-benchmark.ts"
},
"keywords": [
"diff",
"git",
"tui",
"terminal",
"code-review",
"ai"
],
"repository": {
"type": "git",
"url": "git+https://github.com/modem-dev/hunk.git"
},
"homepage": "https://github.com/modem-dev/hunk#readme",
"bugs": {
"url": "https://github.com/modem-dev/hunk/issues"
},
"engines": {
"bun": ">=1.3.10"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.14",
"typescript": "^5.9.3"
},
"dependencies": {
"@opentui/core": "^0.1.88",
"@opentui/react": "^0.1.88",
"@pierre/diffs": "^1.1.0",
"commander": "^14.0.3",
"diff": "^8.0.3",
"parse-diff": "^0.11.1",
"react": "^19.2.4"
},
"license": "MIT"
}