ghatui 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,59 @@
1
+ {
2
+ "name": "ghatui",
3
+ "version": "0.1.0",
4
+ "description": "Terminal UI for monitoring GitHub Actions on your authored pull requests.",
5
+ "author": "fdufbos",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/FDufBos/gh-actions-tui.git"
10
+ },
11
+ "homepage": "https://github.com/FDufBos/gh-actions-tui#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/FDufBos/gh-actions-tui/issues"
14
+ },
15
+ "keywords": [
16
+ "github",
17
+ "cli",
18
+ "tui",
19
+ "github-actions",
20
+ "terminal",
21
+ "workflow",
22
+ "pull-request"
23
+ ],
24
+ "type": "module",
25
+ "private": false,
26
+ "bin": {
27
+ "ghatui": "./dist/gh-actions-tui.js"
28
+ },
29
+ "files": [
30
+ "dist",
31
+ "README.md",
32
+ "LICENSE"
33
+ ],
34
+ "scripts": {
35
+ "dev": "bun --watch src/cli.ts",
36
+ "start": "bun src/cli.ts",
37
+ "build": "bun build src/cli.ts --target node --outfile dist/gh-actions-tui.js && node -e \"const fs=require('node:fs');const p='dist/gh-actions-tui.js';const shebang='#!/usr/bin/env node\\n';const s=fs.readFileSync(p,'utf8');if(!s.startsWith('#!/usr/bin/env node')) fs.writeFileSync(p,shebang+s);\" && chmod +x dist/gh-actions-tui.js",
38
+ "test": "bun test",
39
+ "typecheck": "tsc --noEmit",
40
+ "smoke": "bun run typecheck && bun test",
41
+ "prepack": "bun run build && bun run smoke"
42
+ },
43
+ "devDependencies": {
44
+ "@types/bun": "latest",
45
+ "@types/node": "^25.2.3",
46
+ "@types/react": "^19.2.13"
47
+ },
48
+ "dependencies": {
49
+ "@tanstack/react-query": "^5.90.20",
50
+ "ink": "^6.7.0",
51
+ "ink-spinner": "^5.0.0",
52
+ "react": "^19.2.4",
53
+ "react-devtools-core": "^7.0.1"
54
+ },
55
+ "peerDependencies": {
56
+ "typescript": "^5.9.3"
57
+ },
58
+ "packageManager": "yarn@4.10.2+sha512.0b0e54ad5381f0a35184957bd3ea44e37f5a4fb1960b903b0fb9a3c7c2c009190455c41ef2a1977b1dbd3b72c5f152da696e9c52e2bc78a011b6adea8ee73ba3"
59
+ }