-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 854 Bytes
/
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
{
"name": "flatrepo",
"version": "1.0.10",
"description": "Generate markdown documentation for repositories",
"main": "dist/index.js",
"bin": {
"flatrepo": "dist/cli.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"flatrepo": "node dist/cli.js"
},
"keywords": [
"flatten",
"markdown",
"repository",
"documentation",
"claude",
"openai",
"chatgpt",
"knowledge",
"git"
],
"author": "bdiazc90",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bdiazc90/flatrepo.git"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.33",
"eslint": "^9.19.0",
"typescript": "^5.7.2"
},
"dependencies": {
"glob": "^11.0.0",
"minimatch": "^10.0.1",
"yaml": "^2.6.1",
"yargs": "^17.7.2"
}
}