@usercli/clideveloper 1.0.6 → 1.0.8
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 +2 -2
- package/index.js +1 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<h1><strong>💡 Quick Install (Recommended):</strong></h1>
|
|
5
5
|
|
|
6
6
|
<pre>
|
|
7
|
-
<code>npx
|
|
7
|
+
<code>npx @usercli/clideveloper@latest</code>
|
|
8
8
|
</pre>
|
|
9
9
|
|
|
10
10
|
This npm package is designed to make the **developer installation and setup process easy and automatic**.
|
|
@@ -53,4 +53,4 @@ This package helps developers quickly bootstrap backend tools **without manual c
|
|
|
53
53
|
## 📦 Installation
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
|
-
npx
|
|
56
|
+
npx @usercli/clideveloper@latest
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@usercli/clideveloper",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"clideveloper": "./index.js",
|
|
8
|
+
"cli-dev": "./index.js"
|
|
9
|
+
},
|
|
6
10
|
"scripts": {
|
|
7
11
|
"start": "nodemon index.js"
|
|
8
12
|
},
|
|
@@ -11,7 +15,6 @@
|
|
|
11
15
|
"license": "ISC",
|
|
12
16
|
"type": "commonjs",
|
|
13
17
|
"dependencies": {
|
|
14
|
-
"@usercli/clideveloper": "^1.0.1",
|
|
15
18
|
"chalk": "^5.6.2",
|
|
16
19
|
"chalk-animation": "^2.0.3",
|
|
17
20
|
"figlet": "^1.9.4",
|