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.
Files changed (2) hide show
  1. package/README.md +64 -0
  2. 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monoframe",
3
- "version": "0.0.1-beta.0",
3
+ "version": "0.0.1-beta.3",
4
4
  "description": "Scaffold production-ready monorepos",
5
5
  "type": "module",
6
6
  "bin": {