-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) 路 995 Bytes
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) 路 995 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": "gittomd",
"version": "1.2.2",
"description": "Your entire GitHub repo, intelligently packaged into a single Markdown file via CLI.",
"author": "a3ldi <me@a3ldi.online>",
"license": "MIT",
"homepage": "https://github.com/OpenSpace-Dev/gittomd",
"repository": {
"type": "git",
"url": "https://github.com/OpenSpace-Dev/gittomd.git"
},
"keywords": [
"cli",
"github",
"markdown",
"llm",
"codegen",
"automation"
],
"engines": {
"node": ">=18.0.0"
},
"main": "dist/cli.js",
"bin": {
"gittomd": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "^5.3.0",
"ora": "^8.0.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@types/yargs": "^17.0.32",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}