-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.52 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
{
"name": "readme-autoscan",
"version": "1.3.0",
"description": "CLI tool that scans JavaScript, TypeScript, Python, and PHP projects and automatically generates clean, professional README.md files with installation, usage, scripts, environment variables, and publishing checklist.",
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"bin": {
"readme-autoscan": "bin/readme-autoscan.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "node ./bin/readme-autoscan.js --dry-run",
"check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"keywords": [
"readme",
"readme-generator",
"documentation",
"cli",
"markdown",
"npm-package",
"project-scanner",
"typescript",
"javascript",
"python",
"django",
"poetry",
"pipenv",
"php",
"laravel",
"composer",
"auto-generate",
"documentation-tool"
],
"author": "JomsCode21",
"license": "MIT",
"type": "commonjs",
"dependencies": {
"commander": "^12.1.0",
"fast-glob": "^3.3.3",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/node": "^22.15.17",
"typescript": "^5.8.3",
"vitest": "^2.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JomsCode21/README-auto-scan.git"
},
"bugs": {
"url": "https://github.com/JomsCode21/README-auto-scan/issues"
},
"homepage": "https://github.com/JomsCode21/README-auto-scan#readme"
}