readme-author 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +38 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,11 +1,43 @@
1
1
  # readme-author
2
2
 
3
- ## Description
3
+ ![readme-author banner](https://raw.githubusercontent.com/tallman1O/readme-author/main/public/images/mvp.png)
4
4
 
5
+ A zero-config CLI tool that analyzes your Node.js project and automatically generates a structured `README.md`.
5
6
 
6
- ## Installation
7
- npm install
7
+ Run a single command inside your project folder and get a clean, formatted README in seconds.
8
8
 
9
- ## Available Scripts
10
- - npm run test
11
- - npm run build
9
+ ---
10
+
11
+ ## Why?
12
+
13
+ Most developers either:
14
+
15
+ - Skip writing READMEs
16
+ - Write incomplete documentation
17
+ - Forget installation and execution steps
18
+ - Keep outdated instructions
19
+
20
+ `readme-author` removes that friction by generating a consistent, structured README directly from your project configuration.
21
+
22
+ ---
23
+
24
+ ## Features (v0.1.x – MVP)
25
+
26
+ - Detects Node.js projects
27
+ - Reads `package.json`
28
+ - Extracts project name and description
29
+ - Lists important npm scripts
30
+ - Generates installation instructions
31
+ - Creates or updates `README.md`
32
+ - Prompts before overwriting existing README files
33
+
34
+ No setup. No configuration. No manual input.
35
+
36
+ ---
37
+
38
+ ## Installation & Usage
39
+
40
+ No global install required.
41
+
42
+ ```bash
43
+ npx -y readme-author@latest .
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "readme-author",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Zero-config CLI tool to auto-generate README.md from your project",
5
5
  "main": "dist/cli.js",
6
6
  "type": "commonjs",