create-for-yeyu 3.3.0 → 3.4.0

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
@@ -49,6 +49,9 @@ npx create-for-yeyu my-project --template next-web-app
49
49
  # 使用 EVM DApp 模板
50
50
  npx create-for-yeyu my-project --template evm-dapp
51
51
 
52
+ # 使用 Hono App 模板
53
+ npx create-for-yeyu my-project --template hono
54
+
52
55
  # 使用 Vite 创建项目
53
56
  npx create-for-yeyu my-project --template vite
54
57
 
@@ -113,6 +116,7 @@ create-for-yeyu update --manager npm
113
116
  | NestJS Starter | `nest` | NestJS 应用启动模板 |
114
117
  | Next Web App Starter | `next-web-app` | Next Web App 启动模板 |
115
118
  | EVM DApp Starter | `evm-dapp` | EVM DApp 启动模板 |
119
+ | Hono App Starter | `hono` | Hono 应用启动模板 |
116
120
  | Vite | `vite` | 使用 Vite 官方模板 |
117
121
  | Next.js | `next` | 使用 Create Next App |
118
122
 
package/dist/index.js CHANGED
@@ -31,6 +31,13 @@ var templates = [
31
31
  type: "git",
32
32
  repo: "for-yeyu/evm-dapp-starter-for-yeyu"
33
33
  },
34
+ {
35
+ name: "Hono App Starter",
36
+ value: "hono",
37
+ description: "Hono application starter template",
38
+ type: "git",
39
+ repo: "for-yeyu/hono-app-starter-for-yeyu"
40
+ },
34
41
  {
35
42
  name: "Vite",
36
43
  value: "vite",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-for-yeyu",
3
- "version": "3.3.0",
3
+ "version": "3.4.0",
4
4
  "description": "A CLI tool to scaffold projects from templates",
5
5
  "type": "module",
6
6
  "bin": {