create-lacspace-app 2.1.1 → 2.2.0
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 +35 -0
- package/dist/index.js +20 -5
- package/dist/lib.cjs +5134 -0
- package/dist/lib.d.cts +68 -0
- package/dist/lib.d.ts +68 -0
- package/dist/lib.js +5124 -0
- package/package.json +16 -2
package/package.json
CHANGED
|
@@ -1,11 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-lacspace-app",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "Scaffold a beautiful, production-ready Next.js app from a Lacspace template — portfolio, business, e-commerce, SaaS, blog, docs, dashboard or
|
|
3
|
+
"version": "2.2.0",
|
|
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": {
|
|
7
7
|
"create-lacspace-app": "dist/index.js"
|
|
8
8
|
},
|
|
9
|
+
"main": "./dist/lib.cjs",
|
|
10
|
+
"module": "./dist/lib.js",
|
|
11
|
+
"types": "./dist/lib.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/lib.d.ts",
|
|
15
|
+
"import": "./dist/lib.js",
|
|
16
|
+
"require": "./dist/lib.cjs"
|
|
17
|
+
},
|
|
18
|
+
"./package.json": "./package.json"
|
|
19
|
+
},
|
|
9
20
|
"files": [
|
|
10
21
|
"dist",
|
|
11
22
|
"BENCHMARKS.md"
|
|
@@ -30,6 +41,9 @@
|
|
|
30
41
|
"docs-template",
|
|
31
42
|
"cli",
|
|
32
43
|
"create-next-app-alternative",
|
|
44
|
+
"library",
|
|
45
|
+
"programmatic",
|
|
46
|
+
"generator",
|
|
33
47
|
"typescript"
|
|
34
48
|
],
|
|
35
49
|
"author": "Lacspace <contact@lacspace.com>",
|