create-next-shadcn-kit 0.1.0 → 0.1.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.
- package/README.md +9 -1
- package/package.json +12 -2
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# create-next-shadcn-kit
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/create-next-shadcn-kit)
|
|
4
|
+
[](https://www.npmjs.com/package/create-next-shadcn-kit)
|
|
5
|
+
[](./LICENSE)
|
|
6
|
+
|
|
3
7
|
> Create a Next.js app with **shadcn/ui** pre-integrated — zero config.
|
|
4
8
|
|
|
5
9
|
One command, a fresh Next.js project, Tailwind configured, shadcn/ui initialized, and your favorite components already installed. No juggling two CLIs.
|
|
@@ -59,12 +63,16 @@ npx create-next-shadcn-kit my-app --pnpm
|
|
|
59
63
|
## Development
|
|
60
64
|
|
|
61
65
|
```bash
|
|
62
|
-
git clone
|
|
66
|
+
git clone https://github.com/NikunjSonigara/create-next-shadcn-kit.git
|
|
63
67
|
cd create-next-shadcn-kit
|
|
64
68
|
npm install
|
|
65
69
|
node bin/index.js test-app --yes
|
|
66
70
|
```
|
|
67
71
|
|
|
72
|
+
## Contributing
|
|
73
|
+
|
|
74
|
+
Issues and PRs welcome at [github.com/NikunjSonigara/create-next-shadcn-kit](https://github.com/NikunjSonigara/create-next-shadcn-kit).
|
|
75
|
+
|
|
68
76
|
## License
|
|
69
77
|
|
|
70
78
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-next-shadcn-kit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Create a Next.js app with shadcn/ui pre-integrated — zero config.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nextjs",
|
|
@@ -11,10 +11,20 @@
|
|
|
11
11
|
"scaffold",
|
|
12
12
|
"starter",
|
|
13
13
|
"create-next-app",
|
|
14
|
-
"tailwind"
|
|
14
|
+
"tailwind",
|
|
15
|
+
"redux-toolkit",
|
|
16
|
+
"zustand"
|
|
15
17
|
],
|
|
16
18
|
"author": "Nikunj Sonigara <nikunjsonigara987@gmail.com>",
|
|
17
19
|
"license": "MIT",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/NikunjSonigara/create-next-shadcn-kit.git"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/NikunjSonigara/create-next-shadcn-kit#readme",
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/NikunjSonigara/create-next-shadcn-kit/issues"
|
|
27
|
+
},
|
|
18
28
|
"type": "module",
|
|
19
29
|
"bin": {
|
|
20
30
|
"create-next-shadcn-kit": "bin/index.js"
|