create-fullstack-setup 1.0.1 → 1.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.
- package/README.md +10 -0
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -6,6 +6,16 @@
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## 🚀 Quick Start (Recommended)
|
|
10
|
+
|
|
11
|
+
The fastest way to use the CLI is with **npx** (no global install required):
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx create-fullstack-setup my-app
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
9
19
|
## ✨ Features
|
|
10
20
|
|
|
11
21
|
- 🎯 **Interactive Setup** - Guided prompts for a personalized project
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-fullstack-setup",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "CLI to generate ready-to-run fullstack or backend applications",
|
|
5
5
|
"bin": {
|
|
6
6
|
"create-fullstack-setup": "./bin/index.js"
|
|
@@ -20,6 +20,14 @@
|
|
|
20
20
|
"typescript",
|
|
21
21
|
"javascript"
|
|
22
22
|
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/UttamYadav-DGI/create-fullstack-setup.git"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://github.com/UttamYadav-DGI/create-fullstack-setup#readme",
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/UttamYadav-DGI/create-fullstack-setup/issues"
|
|
30
|
+
},
|
|
23
31
|
"author": "Uttam Yadav",
|
|
24
32
|
"license": "MIT"
|
|
25
33
|
}
|