create-lacspace-app 2.2.1 → 2.2.2
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 +28 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -155,6 +155,34 @@ console.log(`Scaffolded ${written.length} files → ${dir}`);
|
|
|
155
155
|
|
|
156
156
|
`options`: `{ name?, template?, theme? }` — the same choices as the CLI flags above.
|
|
157
157
|
|
|
158
|
+
## ❓ FAQ
|
|
159
|
+
|
|
160
|
+
More questions — about the packages, tools and this CLI — are answered at **[developer.lacspace.com/faq](https://developer.lacspace.com/faq)**.
|
|
161
|
+
|
|
162
|
+
**What is create-lacspace-app?**
|
|
163
|
+
A scaffolding CLI that writes a complete, production-ready **Next.js 15 + Tailwind** app in seconds — pre-wired with Lacspace SEO, security headers, robots.txt, a sitemap, a working contact form, a ⌘K command palette, dynamic Open Graph images and a CI workflow.
|
|
164
|
+
|
|
165
|
+
**How do I scaffold a new app?**
|
|
166
|
+
`npx create-lacspace-app`, or pass a name and template up front: `npx create-lacspace-app my-site --template saas`. It installs dependencies and hands you a running app.
|
|
167
|
+
|
|
168
|
+
**Which templates are included?**
|
|
169
|
+
Personal, business, ecommerce, SaaS, blog (a real Markdown blog), docs (a real Markdown docs site) and marketplace — each a complete, deployable Next.js app. Preview them all at [templates.lacspace.com](https://templates.lacspace.com).
|
|
170
|
+
|
|
171
|
+
**What comes pre-wired in a generated app?**
|
|
172
|
+
SEO metadata + JSON-LD via `@lacspace/seo`, a dynamic OG image endpoint via `@lacspace/og`, security headers, `robots.txt` and a sitemap, a typed contact form with a honeypot, a ⌘K command palette, and a GitHub Actions workflow that gates on an SEO crawl grade.
|
|
173
|
+
|
|
174
|
+
**Do I need to know the Lacspace packages to use it?**
|
|
175
|
+
No — the generated app works out of the box and you can build normally. The packages are wired in where they help; lean on them as much or as little as you like.
|
|
176
|
+
|
|
177
|
+
**Which Node version do I need?**
|
|
178
|
+
Node.js **20 or newer**.
|
|
179
|
+
|
|
180
|
+
**Is it really free — for commercial projects too?**
|
|
181
|
+
Yes. It's free under the permissive **Lacspace Free Licence v1.0**, commercial use included, and the apps you generate are entirely yours.
|
|
182
|
+
|
|
183
|
+
**Where do I report a bug or request a feature?**
|
|
184
|
+
Open an issue at [github.com/lacspace/npm-packages/issues](https://github.com/lacspace/npm-packages/issues).
|
|
185
|
+
|
|
158
186
|
## Licensing
|
|
159
187
|
|
|
160
188
|
Free under the **[Lacspace Free Licence](https://developer.lacspace.com/licenses/lacspace-free-1.0)** — permissive freedoms. Use it in personal and commercial projects at no cost; the apps you generate are entirely yours.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-lacspace-app",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.2",
|
|
4
4
|
"description": "Scaffold a beautiful, production-ready Next.js app from a Lacspace template — portfolio, business, e-commerce, SaaS, blog, docs, dashboard, restaurant or marketplace — pre-wired with SEO, security headers, sitemap and robots. Use it as a CLI (like create-next-app, but you start gorgeous) or import it as a library to generate projects programmatically.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|