hono-crud 0.13.6 → 0.13.7

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.13.7
4
+
5
+ ### Patch Changes
6
+
7
+ - 245ca0b: docs: add the project logo and a centered README header (logo, description, and npm/downloads/tests/size/license badges).
8
+
3
9
  ## 0.13.6
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -1,6 +1,20 @@
1
+ <div align="center">
2
+
3
+ <picture>
4
+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/kshdotdev/hono-crud/main/logo.svg">
5
+ <img src="https://raw.githubusercontent.com/kshdotdev/hono-crud/main/logo-dark.svg" alt="hono-crud" width="124" height="124">
6
+ </picture>
7
+
1
8
  # hono-crud
2
9
 
3
- CRUD generator for [Hono](https://hono.dev) with Zod validation and OpenAPI generation.
10
+ **CRUD generator for [Hono](https://hono.dev) with Zod validation and automatic OpenAPI generation.**
11
+
12
+ [![npm version](https://img.shields.io/npm/v/hono-crud?color=ff5b11&label=npm)](https://www.npmjs.com/package/hono-crud)
13
+ [![npm downloads](https://img.shields.io/npm/dm/hono-crud?color=ff5b11&label=downloads)](https://www.npmjs.com/package/hono-crud)
14
+ [![tests](https://img.shields.io/github/actions/workflow/status/kshdotdev/hono-crud/ci.yml?branch=main&label=tests)](https://github.com/kshdotdev/hono-crud/actions/workflows/ci.yml)
15
+ [![license](https://img.shields.io/npm/l/hono-crud?color=blue)](https://opensource.org/licenses/MIT)
16
+
17
+ </div>
4
18
 
5
19
  Define a model once and register fully-typed Create / Read / Update / Delete / List endpoints. Core also ships auth, logging, events, encryption, serialization, audit, versioning, multi-tenant, and API-versioning helpers. Persistence adapters and docs UIs live in separate `@hono-crud/*` packages.
6
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hono-crud",
3
- "version": "0.13.6",
3
+ "version": "0.13.7",
4
4
  "description": "CRUD generator for Hono with Zod validation and OpenAPI generation",
5
5
  "author": "Kauan Guesser <contato@kauan.net>",
6
6
  "license": "MIT",