@farmzone/fz-template-react 1.0.1 → 1.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
@@ -13,8 +13,8 @@ npx @farmzone/fz-template-react <프로젝트명>
13
13
  ```bash
14
14
  npx @farmzone/fz-template-react my-app
15
15
  cd my-app
16
- npm install
17
- npm run dev
16
+ pnpm install
17
+ pnpm dev
18
18
  ```
19
19
 
20
20
  프로젝트명을 생략하면 대화형으로 입력을 받습니다.
@@ -54,16 +54,16 @@ my-app/
54
54
 
55
55
  ## 포함된 기술 스택
56
56
 
57
- | 항목 | 버전 |
58
- |---|---|
59
- | React | ^19 |
60
- | Vite | ^7 |
61
- | TypeScript | ~5.9 |
62
- | Tailwind CSS | v4 |
63
- | React Router | ^7 |
64
- | TanStack Query | ^5 |
57
+ | 항목 | 버전 |
58
+ | --------------------- | ------ |
59
+ | React | ^19 |
60
+ | Vite | ^7 |
61
+ | TypeScript | ~5.9 |
62
+ | Tailwind CSS | v4 |
63
+ | React Router | ^7 |
64
+ | TanStack Query | ^5 |
65
65
  | @farmzone/fz-react-ui | latest |
66
- | react-hook-form + zod | 최신 |
66
+ | react-hook-form + zod | 최신 |
67
67
 
68
68
  ## 메뉴 추가
69
69
 
@@ -74,9 +74,7 @@ import { LayoutDashboard, Users, ScrollText } from "lucide-react";
74
74
 
75
75
  export const MENU_SECTIONS: MenuSection[] = [
76
76
  {
77
- items: [
78
- { icon: LayoutDashboard, label: "대시보드", path: "/" },
79
- ],
77
+ items: [{ icon: LayoutDashboard, label: "대시보드", path: "/" }],
80
78
  },
81
79
  {
82
80
  title: "관리",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farmzone/fz-template-react",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Farmzone React 프로젝트 보일러플레이트 생성 CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "__PROJECT_NAME__",
3
3
  "private": true,
4
- "version": "1.0.1",
4
+ "version": "1.0.3",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite --host 0.0.0.0 --port 5000",