-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.41 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
{
"name": "@magarcia/gitingest",
"version": "1.1.0",
"description": "A tool to turn any Git repository into a simple text digest of its codebase.",
"type": "module",
"main": "dist/index.js",
"bin": {
"git-ingest": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"prepare": "npm run build",
"lint": "eslint src/",
"clean": "rimraf dist"
},
"keywords": [
"git",
"text",
"extraction",
"repository",
"LLM",
"automation",
"command-line-tool",
"cli",
"dev-tool"
],
"author": {
"name": "Martin Garcia Monterde",
"email": "newluxfero@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/magarcia/gitingest.git"
},
"bugs": {
"url": "https://github.com/magarcia/gitingest/issues"
},
"homepage": "https://github.com/magarcia/gitingest#readme",
"dependencies": {
"clipboardy": "^2.3.0",
"glob": "^7.2.0",
"ignore": "^5.2.0",
"rimraf": "^5.0.0"
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/glob": "^8.1.0",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.57.1",
"globals": "^15.15.0",
"ts-node": "^10.0.0",
"typescript": "^4.0.0",
"typescript-eslint": "^8.24.0"
}
}