-
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) · 973 Bytes
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 973 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": "gitpdf",
"version": "1.1.1",
"description": "Export your git commit history to a beautifully formatted PDF",
"type": "module",
"bin": {
"gitpdf": "./dist/cli.js"
},
"files": [
"dist",
"fonts"
],
"scripts": {
"dev": "tsx src/cli.tsx",
"build": "tsup",
"typecheck": "tsc --noEmit",
"release": "commit-and-tag-version",
"prepublishOnly": "bun run build",
"pub": "bun run release && npm publish"
},
"keywords": [
"git",
"pdf",
"commit",
"history",
"export"
],
"license": "MIT",
"devDependencies": {
"@types/bun": "latest",
"@types/pdfkit": "^0.17.5",
"@types/react": "^19.2.14",
"commit-and-tag-version": "^12.7.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"commander": "^14.0.3",
"ink": "^6.8.0",
"pdfkit": "^0.18.0",
"react": "^19.2.4"
}
}