-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "llm-codebase-scanner",
"version": "1.0.0",
"description": "A command-line tool for scanning and documenting codebases, with special support for .NET solutions",
"main": "index.js",
"bin": {
"llm-codebase-scanner": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"documentation",
"codebase",
"scanner",
"markdown",
"dotnet",
"solution",
"project",
"analysis",
"code-structure",
"development-tools",
"prompt-engineering"
],
"author": {
"name": "Hsaka",
"email": "[email protected]",
"url": "http://gamepyong.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hsaka/llm-codebase-scanner.git"
},
"bugs": {
"url": "https://github.com/Hsaka/llm-codebase-scanner/issues"
},
"homepage": "https://github.com/Hsaka/llm-codebase-scanner#readme",
"license": "MIT",
"dependencies": {
"commander": "^13.1.0",
"picocolors": "^1.1.1",
"xml2js": "^0.6.2"
},
"engines": {
"node": ">=14.0.0"
}
}