|
2 | 2 | "name": "hunkdiff", |
3 | 3 | "version": "0.4.0", |
4 | 4 | "description": "Desktop-inspired terminal diff viewer for understanding agent-authored changesets.", |
5 | | - "type": "module", |
6 | | - "packageManager": "bun@1.3.10", |
| 5 | + "keywords": [ |
| 6 | + "ai", |
| 7 | + "code-review", |
| 8 | + "diff", |
| 9 | + "git", |
| 10 | + "terminal", |
| 11 | + "tui" |
| 12 | + ], |
| 13 | + "homepage": "https://github.com/modem-dev/hunk#readme", |
| 14 | + "bugs": { |
| 15 | + "url": "https://github.com/modem-dev/hunk/issues" |
| 16 | + }, |
| 17 | + "license": "MIT", |
| 18 | + "repository": { |
| 19 | + "type": "git", |
| 20 | + "url": "git+https://github.com/modem-dev/hunk.git" |
| 21 | + }, |
7 | 22 | "bin": { |
8 | 23 | "hunk": "./bin/hunk.cjs" |
9 | 24 | }, |
|
14 | 29 | "README.md", |
15 | 30 | "LICENSE" |
16 | 31 | ], |
| 32 | + "type": "module", |
| 33 | + "publishConfig": { |
| 34 | + "access": "public" |
| 35 | + }, |
17 | 36 | "scripts": { |
18 | 37 | "start": "bun run src/main.tsx", |
19 | 38 | "dev": "bun --watch src/main.tsx", |
|
24 | 43 | "stage:prebuilt:release": "bun run ./scripts/stage-prebuilt-npm.ts --artifact-root ./dist/release/artifacts", |
25 | 44 | "install:bin": "bash ./scripts/install-bin.sh", |
26 | 45 | "typecheck": "tsc --noEmit", |
| 46 | + "format": "oxfmt --write .", |
| 47 | + "format:check": "oxfmt --check .", |
27 | 48 | "test": "bun test", |
28 | 49 | "test:tty-smoke": "HUNK_RUN_TTY_SMOKE=1 bun test test/tty-render-smoke.test.ts", |
29 | 50 | "check:pack": "bun run ./scripts/check-pack.ts", |
|
35 | 56 | "bench:highlight-prefetch": "bun run test/adjacent-highlight-prefetch-benchmark.ts", |
36 | 57 | "bench:large-stream": "bun run test/large-stream-windowing-benchmark.ts" |
37 | 58 | }, |
38 | | - "keywords": [ |
39 | | - "diff", |
40 | | - "git", |
41 | | - "tui", |
42 | | - "terminal", |
43 | | - "code-review", |
44 | | - "ai" |
45 | | - ], |
46 | | - "repository": { |
47 | | - "type": "git", |
48 | | - "url": "git+https://github.com/modem-dev/hunk.git" |
49 | | - }, |
50 | | - "homepage": "https://github.com/modem-dev/hunk#readme", |
51 | | - "bugs": { |
52 | | - "url": "https://github.com/modem-dev/hunk/issues" |
53 | | - }, |
54 | | - "engines": { |
55 | | - "node": ">=18" |
56 | | - }, |
57 | | - "publishConfig": { |
58 | | - "access": "public" |
59 | | - }, |
60 | | - "devDependencies": { |
61 | | - "@types/bun": "latest", |
62 | | - "@types/react": "^19.2.14", |
63 | | - "typescript": "^5.9.3" |
64 | | - }, |
65 | 59 | "dependencies": { |
66 | 60 | "@opentui/core": "^0.1.88", |
67 | 61 | "@opentui/react": "^0.1.88", |
|
72 | 66 | "react": "^19.2.4", |
73 | 67 | "zod": "^4.3.6" |
74 | 68 | }, |
75 | | - "license": "MIT", |
| 69 | + "devDependencies": { |
| 70 | + "@types/bun": "latest", |
| 71 | + "@types/react": "^19.2.14", |
| 72 | + "oxfmt": "^0.41.0", |
| 73 | + "typescript": "^5.9.3" |
| 74 | + }, |
| 75 | + "engines": { |
| 76 | + "node": ">=18" |
| 77 | + }, |
| 78 | + "packageManager": "bun@1.3.10", |
76 | 79 | "pi": { |
77 | 80 | "skills": [ |
78 | 81 | "./skills" |
|
0 commit comments