backend-scaffold-cli 1.0.1 → 1.0.2

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 +1 -1
  2. package/package.json +5 -1
package/README.md CHANGED
@@ -35,7 +35,7 @@ npm start
35
35
  ### Global Installation
36
36
  ```bash
37
37
  npm install -g backend-scaffold-cli
38
- backend-scaffold-cli my-app
38
+ create-express-backend my-app
39
39
  ```
40
40
 
41
41
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backend-scaffold-cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "CLI tool to scaffold Express.js backend projects with MongoDB, middleware, and common setup",
5
5
  "main": "bin/cli.js",
6
6
  "bin": {
@@ -18,6 +18,10 @@
18
18
  "mongodb"
19
19
  ],
20
20
  "author": "abhi0605",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/abhi-0605/express-backend.git"
24
+ },
21
25
  "license": "MIT",
22
26
  "preferGlobal": true,
23
27
  "engines": {