-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.01 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.01 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "repo-description",
"version": "1.0.5",
"description": "AI-powered CLI that automatically generates clear, natural-language descriptions of every file in a repository.",
"keywords": [
"cli",
"ai",
"file-description",
"repository",
"code-analysis",
"natural-language",
"command-line",
"tool",
"automation",
"openai",
"javascript",
"nodejs",
"description-generator",
"code-documentation",
"project-overview",
"developer-tool",
"groq",
"llm",
"generative-ai"
],
"homepage": "https://github.com/ioncakephper/repo-description#readme",
"bugs": {
"url": "https://github.com/ioncakephper/repo-description/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ioncakephper/repo-description.git"
},
"license": "MIT",
"author": "Ion Gireada",
"main": "src/index.js",
"bin": {
"repo-describer": "src/cli.js"
},
"files": [
"src/",
"README.md"
],
"scripts": {
"describe": "node src/cli.js . --update-config md.config.js --transform-name fileTreeExtended",
"describe:file": "node src/cli.js . --output _descriptions.json",
"docs": "npx markdown-magic@3.7.0 **/*.md -c md.config.js",
"format": "prettier --write .",
"lint": "eslint src/ **/*.js **/*.json",
"lint:fix": "eslint --fix src/ **/*.js **/*.json",
"prep": "npm run describe:file && npm run docs && npm run lint:fix && npm run format",
"test": "jest --passWithNoTests"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
}
},
"dependencies": {
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"groq-sdk": "^0.4.0"
},
"devDependencies": {
"@babel/preset-env": "^7.28.5",
"@eslint/js": "^9.38.0",
"babel-jest": "^30.2.0",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsonc": "^2.21.0",
"eslint-plugin-yaml": "^1.1.3",
"globals": "^16.5.0",
"jest": "^30.2.0",
"jsonc-eslint-parser": "^2.4.1",
"markdown-magic-install-extended": "^1.2.0",
"markdown-magic-scripts": "^1.4.0",
"markdown-magic-transform-acknowledgements": "^1.2.2",
"markdown-magic-transform-badges": "^1.1.6",
"markdown-magic-transform-treefile-extended": "^1.2.1",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.19",
"yaml-eslint-parser": "^1.3.0"
},
"scriptsMeta": {
"test": "Runs the test suite using Jest.",
"describe:file": "Generates AI-powered descriptions for repository files and outputs them in various formats.",
"lint": "Lints the codebase for potential errors and style violations.",
"lint:fix": "Lints the codebase and automatically fixes fixable issues.",
"format": "Formats the codebase using Prettier.",
"prep": "Prepares the codebase by generating documentation, linting, and formatting.",
"docs": "Generates documentation by processing Markdown files with markdown-magic.",
"describe": "Update repository descriptions in md.config.js transformDefaults for fileTreeExtended."
}
}