-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.23 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.23 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "github-merger",
"version": "1.0.3",
"description": "A CLI tool to merge files from a GitHub repository into a single file",
"type": "module",
"bin": {
"github-merger": "./dist/bin.js"
},
"exports": "./dist/index.js",
"files": [
"dist",
"README.md"
],
"dependencies": {
"chalk": "^5.4.1",
"figlet": "^1.8.0",
"inquirer": "^12.4.2",
"ora": "^8.2.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/figlet": "^1.7.0",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.13.8",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"scripts": {
"start": "tsx src/bin.ts",
"build": "tsc && chmod +x dist/bin.js",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"github",
"repository",
"file",
"merge",
"cli",
"git",
"code-merger",
"file-merger",
"typescript",
"source-code",
"review",
"code-analysis",
"developer-tools"
],
"repository": {
"type": "git",
"url": "https://github.com/Code-Parth/github-merger"
},
"homepage": "https://github.com/Code-Parth/github-merger#readme",
"author": "code-parth",
"license": "MIT"
}