-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
77 lines (77 loc) · 1.75 KB
/
package.json
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "repo2pdf",
"version": "2.2.4",
"description": "A CLI tool for generating a PDF document from a GitHub repository",
"main": "dist/clone.js",
"bin": {
"repo2pdf": "dist/clone.js"
},
"scripts": {
"start": "node dist/clone.js",
"watch": "tsc -w",
"build": "tsc",
"prepublishOnly": "npm run format && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/BankkRoll/Repo-to-PDF.git"
},
"keywords": [
"github",
"repository",
"pdf",
"clone",
"nodejs",
"convert",
"document",
"langchain",
"openai",
"chatgpt",
"utility",
"tool"
],
"author": "BankkRoll",
"license": "MIT",
"bugs": {
"url": "https://github.com/BankkRoll/Repo-to-PDF/issues"
},
"homepage": "https://github.com/BankkRoll/Repo-to-PDF#readme",
"documentation": "https://github.com/BankkRoll/Repo-to-PDF#readme",
"contributors": [
{
"name": "malpou",
"url": "https://github.com/malpou"
},
{
"name": "LucasionGS",
"url": "https://github.com/LucasionGS"
},
{
"name": "jbirbal-skydom",
"url": "https://github.com/jbirbal-skydom"
}
],
"dependencies": {
"chalk": "^5.2.0",
"highlight.js": "^11.9.0",
"html-entities": "^2.3.6",
"inquirer": "^9.2.6",
"isbinaryfile": "^5.0.0",
"ora": "^6.3.1",
"pdfkit": "^0.13.0",
"prettier": "^3.0.3",
"simple-git": "^3.18.0",
"strip-comments": "^2.0.1"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/pdfkit": "^0.12.10",
"@types/strip-comments": "^2.0.1",
"typescript": "^5.1.3"
}
}