-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.47 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.47 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "hunkdiff",
"version": "0.9.4",
"description": "Desktop-inspired terminal diff viewer for understanding agent-authored changesets.",
"keywords": [
"ai",
"code-review",
"diff",
"git",
"terminal",
"tui"
],
"homepage": "https://github.com/modem-dev/hunk#readme",
"bugs": {
"url": "https://github.com/modem-dev/hunk/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/modem-dev/hunk.git"
},
"bin": {
"hunk": "./bin/hunk.cjs"
},
"workspaces": [
"packages/*"
],
"files": [
"bin",
"dist/npm",
"skills",
"README.md",
"LICENSE"
],
"type": "module",
"exports": {
"./opentui": {
"types": "./dist/npm/opentui/index.d.ts",
"import": "./dist/npm/opentui/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"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",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint . --deny-warnings",
"lint:fix": "oxlint . --fix",
"prepare": "simple-git-hooks",
"test": "\"${npm_execpath:-bun}\" test ./src ./packages ./scripts ./test/cli ./test/session",
"test:integration": "\"${npm_execpath:-bun}\" test ./test/pty",
"test:tty-smoke": "HUNK_RUN_TTY_SMOKE=1 \"${npm_execpath:-bun}\" test ./test/smoke",
"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 benchmarks/bootstrap-load.ts",
"bench:highlight-prefetch": "bun run benchmarks/highlight-prefetch.ts",
"bench:large-stream": "bun run benchmarks/large-stream.ts",
"bench:large-stream-profile": "bun run benchmarks/large-stream-profile.ts"
},
"dependencies": {
"@pierre/diffs": "^1.1.0",
"bun": "^1.3.10",
"commander": "^14.0.3",
"diff": "^8.0.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@hunk/session-broker": "workspace:*",
"@hunk/session-broker-bun": "workspace:*",
"@hunk/session-broker-core": "workspace:*",
"@hunk/session-broker-node": "workspace:*",
"@opentui/core": "^0.1.88",
"@opentui/react": "^0.1.88",
"@types/bun": "latest",
"@types/react": "^19.2.14",
"@types/ws": "^8.18.1",
"lint-staged": "^16.4.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"react": "^19.2.4",
"simple-git-hooks": "^2.13.1",
"tuistory": "^0.0.16",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@opentui/core": "^0.1.88",
"@opentui/react": "^0.1.88",
"react": "^19.2.4"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.10",
"pi": {
"skills": [
"./skills"
]
}
}