-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.25 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.25 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
{
"name": "git-status-dash",
"version": "1.4.0",
"description": "Monitor git repository status with advanced theming, config, and performance - available in Node.js and Go",
"main": "index.mjs",
"bin": {
"git-status-dash": "./index.mjs"
},
"scripts": {
"start": "node index.mjs",
"build-go": "go build -o git-status-dash-go main.go animations.go hacker_effects.go performance.go config.go themes.go",
"benchmark": "./fair_benchmark.sh",
"lint": "eslint --ext .js,.mjs .",
"lint:ci": "eslint --ext .js,.mjs . --quiet",
"lint:fix": "eslint --ext .js,.mjs . --fix",
"test": "echo \"No tests specified\" && exit 0"
},
"keywords": [
"git",
"status",
"monitor",
"dashboard",
"cli",
"tui",
"terminal",
"go",
"nodejs",
"performance",
"themes",
"config",
"ayu",
"catppuccin",
"matrix",
"hacker"
],
"author": "",
"license": "UNLICENSED",
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"chalk": "^5.3.0",
"commander": "^12.1.0"
},
"devDependencies": {
"eslint": "^8.57.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ejfox/git-status-dash"
}
}