monoframe 0.0.1-beta.0 โ 0.0.1-beta.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.
- package/README.md +64 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Monoframe
|
|
2
|
+
|
|
3
|
+
Scaffold **production-ready monorepos** in seconds. One command to generate a fully configured Turborepo with Next.js, TypeScript, Tailwind CSS, and more.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx monoframe@beta init
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
That's it. The interactive CLI walks you through everything.
|
|
12
|
+
|
|
13
|
+
## What You Get
|
|
14
|
+
|
|
15
|
+
- โก **Turborepo** monorepo with optimized build pipelines
|
|
16
|
+
- ๐จ **Next.js** apps with App Router and TypeScript
|
|
17
|
+
- ๐ฏ **shadcn/ui** shared component library with custom presets
|
|
18
|
+
- ๐๏ธ **Tailwind CSS v4** with shared configuration
|
|
19
|
+
- ๐ **Express + TypeScript** backend apps (optional)
|
|
20
|
+
- ๐ฌ **Framer Motion / GSAP / Lenis** animation support (optional)
|
|
21
|
+
- โ
**ESLint + Prettier** or **Biome** for code quality
|
|
22
|
+
- ๐งช **Playwright** e2e testing (optional)
|
|
23
|
+
- ๐ **GitHub Actions** CI pipeline (optional)
|
|
24
|
+
- ๐ช **Husky + lint-staged** git hooks (optional)
|
|
25
|
+
|
|
26
|
+
## Usage
|
|
27
|
+
|
|
28
|
+
### Scaffold a new monorepo
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
npx monoframe@beta init
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### With a project name
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
npx monoframe@beta init my-project
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Use saved preferences
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
npx monoframe@beta init --use-preferences
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### Reset saved preferences
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
npx monoframe@beta init --reset-preferences
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Requirements
|
|
53
|
+
|
|
54
|
+
- **Node.js** 20.9 or later
|
|
55
|
+
- **pnpm** 8 or later
|
|
56
|
+
- **Git** installed
|
|
57
|
+
|
|
58
|
+
## Documentation
|
|
59
|
+
|
|
60
|
+
Full docs at [github.com/Abubokkor98/monoframe](https://github.com/Abubokkor98/monoframe)
|
|
61
|
+
|
|
62
|
+
## License
|
|
63
|
+
|
|
64
|
+
MIT
|