create-your-stack 0.0.1 → 0.0.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 CHANGED
@@ -1,15 +1,37 @@
1
1
  # create-your-stack
2
2
 
3
- To install dependencies:
3
+ A CLI tool to quickly bootstrap a modern Expo app with **Bun**, **Uniwind**, **Convex**, **Clerk**, and **Zustand**.
4
4
 
5
- ```bash
6
- bun install
7
- ```
5
+ ## Features
6
+
7
+ - **⚡️ Bun**: Fast JavaScript runtime and package manager
8
+ - **📱 Expo + Expo Router**: File-based routing for React Native
9
+ - **🎨 Uniwind**: Tailwind CSS for React Native
10
+ - **💾 Convex**: Reactive backend-as-a-service
11
+ - **🔐 Clerk**: Authentication and user management
12
+ - **🐻 Zustand**: Small, fast, and scalable state management
13
+
14
+ ## Usage
8
15
 
9
- To run:
16
+ Run the following command to create a new project:
10
17
 
11
18
  ```bash
12
- bun run index.ts
19
+ # Using Bun (Recommended)
20
+ bunx create-your-stack my-app
21
+
22
+ # Using npx
23
+ npx create-your-stack my-app
13
24
  ```
14
25
 
15
- This project was created using `bun init` in bun v1.3.0. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
26
+ ### Options
27
+
28
+ | Flag | Description | Default |
29
+ |------|-------------|---------|
30
+ | `--dry-run` | Print commands without executing them | `false` |
31
+ | `--no-clerk` | Skip installing Clerk authentication | `false` |
32
+ | `--no-convex` | Skip installing Convex backend | `false` |
33
+ | `--no-uniwind` | Skip installing Uniwind (Tailwind CSS) | `false` |
34
+
35
+ ## Prerequisites
36
+
37
+ - [Bun](https://bun.com) must be installed on your machine.
@@ -1,5 +1,3 @@
1
- #!/usr/bin/env bun
2
- import "../index.ts";
3
1
  #!/usr/bin/env bash
4
2
  set -Eeuo pipefail
5
3
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-your-stack",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "bin": {