kroxt 1.2.0 → 1.2.1

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 +10 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,6 +4,10 @@ A framework-agnostic, modular authentication engine for modern TypeScript applic
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/kroxt.svg)](https://www.npmjs.com/package/kroxt)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
+ [![Security Policy](https://img.shields.io/badge/Security-Policy-brightgreen.svg)](./SECURITY.md)
8
+
9
+ > [!IMPORTANT]
10
+ > **What's New in v1.2.0**: Universal SQL support (Drizzle/Prisma), multi-framework examples for Express/Fastify/Hono, and a revamped mobile-first documentation site. [Read the full Changelog](./CHANGELOG.md).
7
11
 
8
12
  ## 🚀 Why Kroxt?
9
13
 
@@ -166,11 +170,13 @@ Prisma is strict about schemas. If you're sending extra fields in `auth.signup()
166
170
 
167
171
  ---
168
172
 
169
- ## 🔗 Reference Project
173
+ ## 🔗 Reference Projects
170
174
 
171
- Complete working implementations:
172
- - [Express + Drizzle + SQLite](https://github.com/adepoju-oluwatobi/kroxt-example)
173
- - [Express + Mongoose](https://github.com/adepoju-oluwatobi/kroxt-example-cjs)
175
+ Complete working implementations for all frameworks:
176
+ - [Kroxt Examples (All Frameworks)](https://github.com/adepoju-oluwatobi/kroxt-examples)
177
+ - [Hono + Drizzle + SQLite](https://github.com/adepoju-oluwatobi/kroxt-examples/tree/main/hono/kroxt-hono-drizzle)
178
+ - [Express + Prisma + DB](https://github.com/adepoju-oluwatobi/kroxt-examples/tree/main/express/kroxt-express-prisma)
179
+ - [Fastify + Mongoose](https://github.com/adepoju-oluwatobi/kroxt-examples/tree/main/fastify/kroxt-fastify-mongo)
174
180
 
175
181
  ## 📄 License
176
182
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kroxt",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "keywords": [
5
5
  "auth",
6
6
  "authentication",
@@ -91,4 +91,4 @@
91
91
  "tsup": "^8.5.1",
92
92
  "typescript": "^5.9.3"
93
93
  }
94
- }
94
+ }