create-nextjs-stack 0.1.4 → 0.1.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +4 -7
package/README.md CHANGED
@@ -60,7 +60,7 @@ The result is a codebase that follows real-world best practices — App Router,
60
60
  npx create-nextjs-stack@latest my-app
61
61
 
62
62
  # Using npm
63
- npm create nextjs-stack my-app
63
+ npm create nextjs-stack@latest my-app
64
64
 
65
65
  # Global install (optional)
66
66
  npm install -g create-nextjs-stack
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "create-nextjs-stack",
3
- "version": "0.1.4",
3
+ "version": "0.1.7",
4
4
  "description": "CLI to scaffold Next.js Landing Page and Supabase Admin Panel",
5
5
  "private": false,
6
- "bin": "./bin/cli.js",
6
+ "bin": {
7
+ "create-nextjs-stack": "./bin/cli.js"
8
+ },
7
9
  "files": [
8
10
  "bin",
9
11
  "templates"
@@ -40,14 +42,9 @@
40
42
  "url": "https://github.com/mburakaltiparmak/create-nextjs-stack/issues"
41
43
  },
42
44
  "devDependencies": {
43
- "@reduxjs/toolkit": "^2.11.2",
44
45
  "@types/fs-extra": "^11.0.4",
45
46
  "@types/node": "^25.2.3",
46
- "@types/redux-logger": "^3.0.13",
47
47
  "execa": "^9.6.1",
48
- "react": "^19.2.4",
49
- "react-redux": "^9.2.0",
50
- "redux-logger": "^3.0.6",
51
48
  "vitest": "^4.0.18"
52
49
  }
53
50
  }