create-react-scaffold-cli 0.1.1 → 0.1.3

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 +33 -0
  2. package/package.json +11 -2
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # create-react-scaffold-cli
2
+
3
+ A CLI to scaffold a **feature-first React application** with clear boundaries and long-term maintainability.
4
+
5
+ This scaffold enforces a simple rule:
6
+
7
+ > **Business logic lives in features.
8
+ > Reusable primitives live in shared.
9
+ > App only wires things together.**
10
+
11
+ ---
12
+
13
+ ## Why this exists
14
+
15
+ - unclear ownership
16
+ - massive `components/` folders
17
+ - bloated `shared/` directories
18
+ - fragile cross-feature imports
19
+
20
+ This scaffold exists to:
21
+
22
+ - enforce **feature ownership**
23
+ - make refactoring safe
24
+ - allow deleting features without breaking the app
25
+ - keep architecture understandable as the app grows
26
+
27
+ ---
28
+
29
+ ## Quick Start
30
+
31
+ ```bash
32
+ npx create-react-scaffold-cli
33
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-react-scaffold-cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "create-react-scaffold": "bin/index.js"
@@ -10,5 +10,14 @@
10
10
  "execa": "^9.6.1",
11
11
  "fs-extra": "^11.3.3",
12
12
  "prompts": "^2.4.2"
13
- }
13
+ },
14
+ "keywords": [
15
+ "npx",
16
+ "cli",
17
+ "react",
18
+ "scaffold",
19
+ "boilerplate",
20
+ "create-app",
21
+ "vite"
22
+ ]
14
23
  }