-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.08 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
{
"name": "@shbernal/gitpulse",
"version": "0.1.3",
"description": "CLI to take the pulse of development projects.",
"keywords": [
"cli",
"github",
"terminal",
"repository-analysis",
"developer-tools",
"project-health"
],
"type": "module",
"packageManager": "bun@1.3.13",
"repository": {
"type": "git",
"url": "https://github.com/shbernal/gitpulse"
},
"bin": {
"gitpulse": "dist/cli.js"
},
"files": [
"dist/cli.js",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "bun run src/bin.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"visuals": "bun run scripts/render-visuals.ts",
"build": "bun build src/bin.ts --target node --outfile dist/cli.js && chmod +x dist/cli.js",
"build:bin": "bun build src/bin.ts --compile --outfile dist/gitpulse",
"prepack": "bun run build"
},
"dependencies": {
"commander": "^14.0.3",
"octokit": "^5.0.5",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"typescript": "^6.0.3"
}
}