create-gm-app 1.0.0 โ 1.0.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 +89 -66
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,28 +1,19 @@
|
|
|
1
1
|
# create-gm-app
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+

|
|
4
|
+

|
|
4
5
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
## โจ Features
|
|
8
|
-
|
|
9
|
-
* โก Fast project scaffolding using **npx**
|
|
10
|
-
* ๐ Web stack (Next.js + Tailwind + shadcn/ui)
|
|
11
|
-
* ๐ฑ Mobile stack (Expo + HeroUI + Uniwind)
|
|
12
|
-
* ๐ง Smart interactive CLI (Inquirer-based)
|
|
13
|
-
* ๐งน Clean project structure out of the box
|
|
14
|
-
* ๐ง Minimal but scalable architecture
|
|
15
|
-
* ๐งฉ Built for extensibility (future stacks)
|
|
6
|
+
๐ Scaffold modern **Web (Next.js)** and **Mobile (Expo)** apps with a clean, production-ready setup.
|
|
16
7
|
|
|
17
8
|
---
|
|
18
9
|
|
|
19
|
-
##
|
|
10
|
+
## โก Quick Usage
|
|
20
11
|
|
|
21
12
|
```bash
|
|
22
13
|
npx create-gm-app
|
|
23
14
|
```
|
|
24
15
|
|
|
25
|
-
Or
|
|
16
|
+
Or:
|
|
26
17
|
|
|
27
18
|
```bash
|
|
28
19
|
npx create-gm-app web my-app
|
|
@@ -31,46 +22,93 @@ npx create-gm-app mobile my-app
|
|
|
31
22
|
|
|
32
23
|
---
|
|
33
24
|
|
|
25
|
+
## ๐งฑ Stacks
|
|
26
|
+
|
|
27
|
+
### ๐ Web
|
|
28
|
+
|
|
29
|
+
- Next.js (App Router)
|
|
30
|
+
- TypeScript
|
|
31
|
+
- Tailwind CSS
|
|
32
|
+
- shadcn/ui
|
|
33
|
+
|
|
34
|
+
### ๐ฑ Mobile
|
|
35
|
+
|
|
36
|
+
- Expo
|
|
37
|
+
- HeroUI Native
|
|
38
|
+
- Uniwind
|
|
39
|
+
- Reanimated + Gesture Handler
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## โจ Core Features
|
|
44
|
+
|
|
45
|
+
- Interactive CLI (Inquirer)
|
|
46
|
+
- Clean, scalable architecture
|
|
47
|
+
- Production-ready setup
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## ๐ Full Documentation
|
|
52
|
+
|
|
53
|
+
For complete setup details, customization options, development workflow, and roadmap:
|
|
54
|
+
|
|
55
|
+
๐ https://github.com/gilbertmunuotz/gm-cli-tool
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
# ๐ GitHub Documentation (Full)
|
|
60
|
+
|
|
61
|
+
## โจ Features
|
|
62
|
+
|
|
63
|
+
- โก Fast project scaffolding using **npx**
|
|
64
|
+
- ๐ Web stack (Next.js + Tailwind + shadcn/ui)
|
|
65
|
+
- ๐ฑ Mobile stack (Expo + HeroUI + Uniwind)
|
|
66
|
+
- ๐ง Smart interactive CLI (Inquirer-based)
|
|
67
|
+
- ๐งน Clean project structure out of the box
|
|
68
|
+
- ๐ง Minimal but scalable architecture
|
|
69
|
+
- ๐งฉ Built for extensibility (future stacks)
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
34
73
|
## ๐งฑ Supported Stacks
|
|
35
74
|
|
|
36
75
|
### ๐ Web Stack
|
|
37
76
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
77
|
+
- Next.js (App Router)
|
|
78
|
+
- TypeScript
|
|
79
|
+
- Tailwind CSS
|
|
80
|
+
- shadcn/ui
|
|
81
|
+
- ESLint
|
|
82
|
+
- React Compiler (enabled)
|
|
44
83
|
|
|
45
84
|
#### Optional Customization
|
|
46
85
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
86
|
+
- `src/` directory
|
|
87
|
+
- Import alias (`@/*`)
|
|
88
|
+
- AGENTS.md support
|
|
50
89
|
|
|
51
90
|
---
|
|
52
91
|
|
|
53
92
|
### ๐ฑ Mobile Stack
|
|
54
93
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
94
|
+
- Expo (latest)
|
|
95
|
+
- TypeScript
|
|
96
|
+
- HeroUI Native
|
|
97
|
+
- Uniwind (Tailwind for React Native)
|
|
98
|
+
- React Native Reanimated
|
|
99
|
+
- Gesture Handler
|
|
61
100
|
|
|
62
101
|
#### Includes
|
|
63
102
|
|
|
64
|
-
|
|
103
|
+
```
|
|
104
|
+
app/
|
|
105
|
+
components/
|
|
106
|
+
lib/
|
|
107
|
+
hooks/
|
|
108
|
+
```
|
|
65
109
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
components/
|
|
69
|
-
lib/
|
|
70
|
-
hooks/
|
|
71
|
-
```
|
|
72
|
-
* Babel configured for Reanimated
|
|
73
|
-
* Reset of default Expo boilerplate
|
|
110
|
+
- Babel configured for Reanimated
|
|
111
|
+
- Reset of default Expo boilerplate
|
|
74
112
|
|
|
75
113
|
---
|
|
76
114
|
|
|
@@ -82,14 +120,6 @@ npx create-gm-app mobile my-app
|
|
|
82
120
|
npx create-gm-app
|
|
83
121
|
```
|
|
84
122
|
|
|
85
|
-
Youโll be prompted to choose:
|
|
86
|
-
|
|
87
|
-
* Project type (Web / Mobile)
|
|
88
|
-
* Project name
|
|
89
|
-
* Customization options
|
|
90
|
-
|
|
91
|
-
---
|
|
92
|
-
|
|
93
123
|
### Direct Mode
|
|
94
124
|
|
|
95
125
|
```bash
|
|
@@ -103,29 +133,22 @@ npx create-gm-app mobile my-app
|
|
|
103
133
|
|
|
104
134
|
```
|
|
105
135
|
gm-stack/
|
|
106
|
-
โโโ bin/
|
|
136
|
+
โโโ bin/
|
|
107
137
|
โโโ src/
|
|
108
|
-
โ โโโ cli/
|
|
109
|
-
โ โโโ commands/
|
|
110
|
-
โ โโโ templates/
|
|
111
|
-
โ โโโ utils/
|
|
138
|
+
โ โโโ cli/
|
|
139
|
+
โ โโโ commands/
|
|
140
|
+
โ โโโ templates/
|
|
141
|
+
โ โโโ utils/
|
|
112
142
|
```
|
|
113
143
|
|
|
114
144
|
---
|
|
115
145
|
|
|
116
146
|
## ๐ ๏ธ Development
|
|
117
147
|
|
|
118
|
-
Clone the repo:
|
|
119
|
-
|
|
120
148
|
```bash
|
|
121
|
-
git clone https://github.com/
|
|
149
|
+
git clone https://github.com/gilbertmunuotz/gm-stack.git
|
|
122
150
|
cd gm-stack
|
|
123
151
|
npm install
|
|
124
|
-
```
|
|
125
|
-
|
|
126
|
-
Run locally:
|
|
127
|
-
|
|
128
|
-
```bash
|
|
129
152
|
npm link
|
|
130
153
|
npm run build
|
|
131
154
|
npx create-gm-app
|
|
@@ -135,17 +158,17 @@ npx create-gm-app
|
|
|
135
158
|
|
|
136
159
|
## ๐ Roadmap
|
|
137
160
|
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
161
|
+
- [ ] More templates (SaaS, dashboards)
|
|
162
|
+
- [ ] Plugin system
|
|
163
|
+
- [ ] Config support (`gm.config.json`)
|
|
164
|
+
- [ ] CI/CD presets
|
|
165
|
+
- [ ] Database integrations (Prisma, Supabase)
|
|
143
166
|
|
|
144
167
|
---
|
|
145
168
|
|
|
146
169
|
## ๐ค Contributing
|
|
147
170
|
|
|
148
|
-
|
|
171
|
+
PRs and issues are welcome.
|
|
149
172
|
|
|
150
173
|
---
|
|
151
174
|
|
|
@@ -158,4 +181,4 @@ MIT License
|
|
|
158
181
|
## ๐ค Author
|
|
159
182
|
|
|
160
183
|
**Gilbert Munuo**
|
|
161
|
-
|
|
184
|
+
๐ https://www.gilbertmunuotz.com
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-gm-app",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Official CLI to scaffold GM Stack apps",
|
|
5
5
|
"bin": {
|
|
6
6
|
"create-gm-app": "./bin/create-gm-stack.js"
|
|
@@ -38,4 +38,4 @@
|
|
|
38
38
|
"ts-node": "^10.9.2",
|
|
39
39
|
"typescript": "^6.0.2"
|
|
40
40
|
}
|
|
41
|
-
}
|
|
41
|
+
}
|