-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.29 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.29 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
70
71
72
73
74
75
{
"name": "hunkdiff",
"version": "0.3.0-beta.1",
"description": "Desktop-inspired terminal diff viewer for understanding agent-authored changesets.",
"type": "module",
"packageManager": "bun@1.3.10",
"bin": {
"hunk": "./bin/hunk.cjs"
},
"files": [
"bin",
"dist/npm",
"README.md",
"LICENSE"
],
"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",
"build:prebuilt:npm": "bun run build:bin && bun run ./scripts/stage-prebuilt-npm.ts",
"build:prebuilt:artifact": "bun run build:bin && bun run ./scripts/build-prebuilt-artifact.ts",
"stage:prebuilt:release": "bun run ./scripts/stage-prebuilt-npm.ts --artifact-root ./dist/release/artifacts",
"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",
"check:prebuilt-pack": "bun run ./scripts/check-prebuilt-pack.ts",
"smoke:prebuilt-install": "bun run ./scripts/smoke-prebuilt-install.ts",
"publish:prebuilt:npm": "bun run ./scripts/publish-prebuilt-npm.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": {
"node": ">=18"
},
"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",
"bun": "^1.3.10",
"commander": "^14.0.3",
"diff": "^8.0.3",
"parse-diff": "^0.11.1",
"react": "^19.2.4"
},
"license": "MIT"
}