@aditokmo/react-cli-setup 0.1.0 → 0.1.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.
- package/README.md +3 -1
- package/package.json +13 -10
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
A React CLI built with Vite that helps you build and structure your projects in seconds. It eliminates manual setup by configuring your favorite tools into a **clean, modular architecture** automatically.
|
|
6
6
|
|
|
7
|
+
**Note:** This package is a CLI tool. Do not install it via `npm i`. Instead check usage down below.
|
|
8
|
+
|
|
7
9
|
## What it does
|
|
8
10
|
|
|
9
11
|
* **Automated Installation:** Installs all selected libraries (listed below) for you.
|
|
@@ -12,7 +14,7 @@ A React CLI built with Vite that helps you build and structure your projects in
|
|
|
12
14
|
|
|
13
15
|
---
|
|
14
16
|
|
|
15
|
-
##
|
|
17
|
+
## Usage
|
|
16
18
|
|
|
17
19
|
Run the following command in your terminal to start CLI
|
|
18
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aditokmo/react-cli-setup",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "A fast React CLI to jumpstart your projects. It sets up your libraries and organizes a scalable folder structure so you can skip the configuration and go straight to coding.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -11,19 +11,19 @@
|
|
|
11
11
|
"react",
|
|
12
12
|
"cli",
|
|
13
13
|
"vite",
|
|
14
|
-
"
|
|
14
|
+
"project-generator",
|
|
15
|
+
"react-starter",
|
|
16
|
+
"react-boilerplate",
|
|
17
|
+
"feature-based-architecture",
|
|
18
|
+
"folder-structure",
|
|
15
19
|
"tanstack-router",
|
|
16
20
|
"tanstack-query",
|
|
17
|
-
"tanstack-form",
|
|
18
21
|
"zustand",
|
|
19
22
|
"shadcn-ui",
|
|
20
|
-
"tailwind",
|
|
21
|
-
"project-generator",
|
|
22
|
-
"react-hook-form",
|
|
23
|
-
"zod",
|
|
24
|
-
"enterprise-architecture",
|
|
23
|
+
"tailwind-css",
|
|
25
24
|
"frontend-architecture",
|
|
26
|
-
"
|
|
25
|
+
"dx",
|
|
26
|
+
"automated-setup"
|
|
27
27
|
],
|
|
28
28
|
"repository": {
|
|
29
29
|
"type": "git",
|
|
@@ -40,7 +40,10 @@
|
|
|
40
40
|
"dist",
|
|
41
41
|
"templates"
|
|
42
42
|
],
|
|
43
|
-
"author":
|
|
43
|
+
"author": {
|
|
44
|
+
"name": "aditokmo",
|
|
45
|
+
"url": "https://github.com/aditokmo"
|
|
46
|
+
},
|
|
44
47
|
"license": "ISC",
|
|
45
48
|
"dependencies": {
|
|
46
49
|
"@clack/prompts": "^0.11.0",
|