-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 925 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 925 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
{
"name": "gitpulpo",
"version": "0.1.0",
"description": "Visualizador local de repos Git + GitHub, estilo GitKraken",
"main": "server.js",
"bin": {
"gitpulpo": "bin/gitpulpo.js"
},
"scripts": {
"start": "node server.js"
},
"files": [
"bin/",
"lib/",
"public/",
"!public/logo/icon.png",
"!public/logo/gitpulpo.png",
"!public/logo/gitpulpo-dark.png",
"server.js",
"README.md",
"LICENSE"
],
"keywords": ["git", "gui", "visualizer", "commit-graph", "github", "gitkraken"],
"author": "corymotiongit",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/corymotiongit/gitpulpo.git"
},
"bugs": {
"url": "https://github.com/corymotiongit/gitpulpo/issues"
},
"homepage": "https://github.com/corymotiongit/gitpulpo#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"express": "^4.19.2"
}
}