-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 906 Bytes
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 906 Bytes
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
{
"name": "gitnoys",
"version": "2.2.1",
"description": "btop-inspired interactive Git TUI client for your terminal",
"type": "module",
"bin": {
"gitnoys": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "node build.js",
"prepublishOnly": "npm run build",
"start": "npm run build && node dist/cli.js",
"dev": "tsx --watch src/cli.jsx"
},
"keywords": [
"git",
"tui",
"terminal",
"dashboard",
"cli",
"btop",
"diff",
"commit",
"branch"
],
"author": "ccassel",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cassel/gitnoys"
},
"homepage": "https://github.com/cassel/gitnoys#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"ink": "^5.2.1",
"react": "^18.3.1"
},
"devDependencies": {
"esbuild": "^0.27.3",
"tsx": "^4.19.0"
}
}