shadcn-nextjs-page-generator 1.0.0 → 1.0.2

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 +9 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,9 +1,11 @@
1
- # shadcn-page-gen
1
+ # shadcn-nextjs-page-generator
2
2
 
3
3
  > CLI tool to generate production-ready Next.js pages with shadcn/ui, Tailwind CSS v4, and Framer Motion animations.
4
4
 
5
- [![npm version](https://img.shields.io/npm/v/shadcn-page-gen.svg)](https://www.npmjs.com/package/shadcn-page-gen)
5
+ [![npm version](https://img.shields.io/npm/v/shadcn-nextjs-page-generator.svg)](https://www.npmjs.com/package/shadcn-nextjs-page-generator)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
7
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.9-blue.svg)](https://www.typescriptlang.org/)
8
+ [![Next.js](https://img.shields.io/badge/Next.js-14+-black.svg)](https://nextjs.org/)
7
9
 
8
10
  ## Features
9
11
 
@@ -20,10 +22,10 @@
20
22
 
21
23
  ```bash
22
24
  # Run with npx (no installation required)
23
- npx shadcn-page-gen
25
+ npx shadcn-nextjs-page-generator
24
26
 
25
27
  # Or install globally
26
- npm install -g shadcn-page-gen
28
+ npm install -g shadcn-nextjs-page-generator
27
29
  shadcn-page-gen
28
30
  ```
29
31
 
@@ -73,7 +75,7 @@ app/(dashboard)/your-route/
73
75
  ### 1. Run the CLI
74
76
 
75
77
  ```bash
76
- npx shadcn-page-gen
78
+ npx shadcn-nextjs-page-generator
77
79
  ```
78
80
 
79
81
  ### 2. Answer Interactive Prompts
@@ -204,7 +206,7 @@ transition: { duration: 0.4 }
204
206
  ### Generate User Management Page
205
207
 
206
208
  ```bash
207
- npx shadcn-page-gen
209
+ npx shadcn-nextjs-page-generator
208
210
  ```
209
211
 
210
212
  **Configuration:**
@@ -220,7 +222,7 @@ npx shadcn-page-gen
220
222
  ### Generate Simple Product List
221
223
 
222
224
  ```bash
223
- npx shadcn-page-gen
225
+ npx shadcn-nextjs-page-generator
224
226
  ```
225
227
 
226
228
  **Configuration:**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shadcn-nextjs-page-generator",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "CLI tool to generate Next.js pages with shadcn/ui, Tailwind v4, and Framer Motion",
5
5
  "author": "Jatmiko",
6
6
  "license": "MIT",