repomeld 3.0.3 → 3.0.4

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 (3) hide show
  1. package/README.md +3 -8
  2. package/bin/cli.js +1 -1
  3. package/package.json +4 -4
package/README.md CHANGED
@@ -328,7 +328,7 @@ repomeld --include src --style markdown --output analysis.md
328
328
 
329
329
  ```bash
330
330
  # Clone the repo
331
- git clone https://github.com/susheel/repomeld.git
331
+ git clone https://github.com/susheelhbti/repomeld.git
332
332
  cd repomeld
333
333
 
334
334
  # Install dependencies
@@ -383,11 +383,6 @@ MIT © [Susheel](mailto:susheelhbti@gmail.com)
383
383
  > Got a project? Let's talk — 📧 **[susheelhbti@gmail.com](mailto:susheelhbti@gmail.com)**
384
384
 
385
385
  ---
386
-
387
- ## Star History
388
-
389
- [![Star History Chart](https://api.star-history.com/svg?repos=susheel/repomeld&type=Date)](https://star-history.com/#susheel/repomeld&Date)
390
-
391
- ---
392
-
386
+
387
+
393
388
  **Made with ❤️ for developers who need better context for AI tools**
package/bin/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  const { program } = require("commander");
4
4
  const { repomeld } = require("../src/index");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repomeld",
3
- "version": "3.0.3",
3
+ "version": "3.0.4",
4
4
  "description": "Meld your entire repo into a single file — perfect for AI context & code reviews",
5
5
  "main": "bin/cli.js",
6
6
  "bin": {
@@ -32,10 +32,10 @@
32
32
  },
33
33
  "repository": {
34
34
  "type": "git",
35
- "url": "git+https://github.com/sakshsky/repomeld.git"
35
+ "url": "git+https://github.com/susheelhbti/repomeld.git"
36
36
  },
37
37
  "bugs": {
38
- "url": "https://github.com/sakshsky/repomeld/issues"
38
+ "url": "https://github.com/susheelhbti/repomeld/issues"
39
39
  },
40
- "homepage": "https://github.com/sakshsky/repomeld#readme"
40
+ "homepage": "https://github.com/susheelhbti/repomeld#readme"
41
41
  }