proj-pulse 1.0.0 → 1.0.1

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 +10 -8
  2. package/package.json +2 -2
package/Readme.md CHANGED
@@ -20,18 +20,20 @@ npx proj-pulse
20
20
 
21
21
  ---
22
22
 
23
- ## Install
23
+ ## Usage
24
24
 
25
25
  ```bash
26
- # Run instantly with npx (no install needed)
27
- npx proj-pulse
26
+ npx proj-pulse "path/to/your/project"
27
+ ```
28
28
 
29
- # Or install globally
30
- npm install -g proj-pulse
31
- proj-pulse
29
+ **Examples:**
30
+ ```bash
31
+ # Scan current folder
32
+ npx proj-pulse "./"
32
33
 
33
- # Or scan a specific folder
34
- proj-pulse /path/to/my/project
34
+ # Scan a specific project
35
+ npx proj-pulse "C:\Users\dev\my-app"
36
+ npx proj-pulse "/home/dev/my-app"
35
37
  ```
36
38
 
37
39
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proj-pulse",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A health checkup for your project — dead deps, stale TODOs, unused env vars, and more.",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -25,4 +25,4 @@
25
25
  "glob": "^8.1.0",
26
26
  "ora": "^5.4.1"
27
27
  }
28
- }
28
+ }