Metadata-Version: 2.4
Name: pypackx
Version: 1.0.0
Summary: React + Tailwind dev tool with live reload and production bundling (esbuild)
Author: Rohit Chauhan
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: aiohttp>=3.9
Requires-Dist: watchfiles>=0.21

# 🐍🔥 PyPack (Rohit Chauhan)

A React + Tailwind Project Generator, Dev Server, and Web Bundler written in modern Python.  
Supports **JavaScript and TypeScript projects with Tailwind support**, **fast-server**, **hot-reload**, **web-bundler**.  

## 🚀 Features
- `create` → create a new React app  
- `dev` → run local dev server with hot reload  
- `build` → bundle app for production  

## 🛠 Prerequisites & Usage

- Python 3.10+ (tested on Python 3.13)  
- Node.js + npm (for React dependencies) 

### Steps:

```bash
# 1. Install Python dependencies
pip install --user aiohttp watchfiles

# 2. Create a new project (Tailwind support by default)
./pypack create reactjs test-app (javascript)

or 

./pypack create reactts test-app (typescript)

# 3. Enter the project
cd test-app

# 4. Start the dev server
../pypack dev

# 5. Build for production
../pypack build
