-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.85 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
{
"name": "gimme_readme",
"version": "1.0.1",
"description": "gimme_readme is a command-line tool powered by AI that generates a comprehensive README.md file for your project. It analyzes multiple source code files at once, providing concise explanations of each file's purpose, functionality, and key components, all in a single, easy-to-read document.",
"author": "Peter Wan",
"license": "MIT",
"main": "./src/_gr.js",
"bin": {
"gr-ai": "./src/_gr.js"
},
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js -c jest.config.js --runInBand",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js -c jest.config.js --runInBand --coverage",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch --",
"lint": "eslint --config eslint.config.mjs \"./src/**/*.js\" \"tests/**/*.js\"",
"format": "prettier --write \"./src/**/*.js\" \"tests/**/*.js\"",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterdanwan/gimme_readme.git"
},
"files": [
"src/"
],
"keywords": [
"ai",
"chat-completion",
"learning",
"README.md"
],
"bugs": {
"url": "https://github.com/peterdanwan/gimme_readme/issues"
},
"homepage": "https://github.com/peterdanwan/gimme_readme#readme",
"dependencies": {
"@google/generative-ai": "^0.17.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"glob": "^11.0.0",
"groq-sdk": "^0.7.0",
"ignore": "^6.0.2",
"ora": "^8.1.0",
"toml-eslint-parser": "^0.10.0"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"nock": "^13.5.5",
"prettier": "^3.3.3",
"supertest": "^7.0.0"
}
}