-
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) · 998 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 998 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": "@deviationist/grove",
"version": "0.1.2",
"description": "Stacked branch visualizer for GitHub PRs",
"license": "MIT",
"author": "deviationist",
"homepage": "https://github.com/deviationist/grove",
"repository": {
"type": "git",
"url": "git+https://github.com/deviationist/grove.git"
},
"bugs": {
"url": "https://github.com/deviationist/grove/issues"
},
"bin": {
"grove": "dist/index.js"
},
"files": [
"dist/"
],
"scripts": {
"build": "node build.mjs",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"screenshot": "node scripts/generate-screenshot.mjs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "^4.1.2"
},
"devDependencies": {
"@types/node": "^20.0.0",
"esbuild": "^0.20.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"git",
"github",
"stacked-prs",
"pull-requests",
"cli"
]
}