nextworks 0.0.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 (3) hide show
  1. package/README.md +30 -0
  2. package/index.js +1 -0
  3. package/package.json +21 -0
package/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # nextworks
2
+
3
+ Next.js building blocks you can install via CLI - components, authentication, forms, CRUD operations, and more.
4
+
5
+ ## 🚧 Under Active Development
6
+
7
+ This package is currently being built. Stay tuned!
8
+
9
+ ## Features (Coming Soon)
10
+
11
+ - 🎨 Pre-built Next.js components
12
+ - 🔐 Authentication flows
13
+ - 📝 Form components
14
+ - 📊 CRUD operations
15
+ - 🎯 Install only what you need (shadcn-style)
16
+ - 🛠️ CLI-based installation
17
+
18
+ ## Installation
19
+
20
+ ```bash
21
+ npx nextworks add [component]
22
+ ```
23
+
24
+ ## Roadmap
25
+
26
+ More details coming soon as development progresses.
27
+
28
+ ## License
29
+
30
+ MIT
package/index.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = { name: "nextworks" };
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "nextworks",
3
+ "version": "0.0.1",
4
+ "description": "Next.js building blocks - install components, auth, forms, and CRUD via CLI",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [
10
+ "nextjs",
11
+ "next",
12
+ "components",
13
+ "cli",
14
+ "shadcn-style",
15
+ "building-blocks",
16
+ "react",
17
+ "typescript"
18
+ ],
19
+ "author": "jblh",
20
+ "license": "MIT"
21
+ }