naystack 1.5.10 → 1.5.11

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 +1 -1
  2. package/package.json +6 -4
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Naystack
2
2
 
3
- A minimal, powerful stack for Next.js app development. Built with **Next.js + Drizzle ORM + GraphQL + S3 + Auth**.
3
+ A minimal, powerful stack for Next.js app development. Provides end-to-end **Auth + GraphQL + File Upload + Other utilities**. With bring-your-own database.
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/naystack.svg)](https://www.npmjs.com/package/naystack)
6
6
  [![License: ISC](https://img.shields.io/badge/License-ISC-blue.svg)](https://opensource.org/licenses/ISC)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "naystack",
3
- "version": "1.5.10",
3
+ "version": "1.5.11",
4
4
  "description": "A stack built with Next + GraphQL + S3 + Auth",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -95,9 +95,6 @@
95
95
  "drizzle-orm": "^0.44.5",
96
96
  "googleapis": "^160.0.0",
97
97
  "jsonwebtoken": "^9.0.2",
98
- "next": "^16",
99
- "react": "^19.2",
100
- "react-dom": "^19.2",
101
98
  "reflect-metadata": "^0.2.2",
102
99
  "type-graphql": "2.0.0-rc.2",
103
100
  "uuid": "^13.0.0",
@@ -133,5 +130,10 @@
133
130
  "repository": {
134
131
  "type": "git",
135
132
  "url": "https://github.com/abhinaypandey02/naystack.git"
133
+ },
134
+ "peerDependencies": {
135
+ "react": "^18 || ^19",
136
+ "react-dom": "^18 || ^19",
137
+ "next": ">=13"
136
138
  }
137
139
  }