@leonardofirme/deploy-nextjs16 1.1.9 → 1.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/package.json +21 -7
- package/src/app/page.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,14 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@leonardofirme/deploy-nextjs16",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Estruturas profissionais de ERP e SaaS - Leonardo Firme",
|
|
6
6
|
"bin": {
|
|
7
7
|
"lf-init": "bin/cli.js"
|
|
8
8
|
},
|
|
9
|
-
"
|
|
9
|
+
"files": [
|
|
10
|
+
"bin",
|
|
11
|
+
"src",
|
|
12
|
+
"public",
|
|
13
|
+
"next.config.ts",
|
|
14
|
+
"tsconfig.json",
|
|
15
|
+
"postcss.config.mjs",
|
|
16
|
+
"eslint.config.mjs",
|
|
17
|
+
"package.json",
|
|
18
|
+
"README.md"
|
|
19
|
+
],
|
|
10
20
|
"publishConfig": {
|
|
11
|
-
"access": "public"
|
|
21
|
+
"access": "public",
|
|
22
|
+
"registry": "https://registry.npmjs.org/"
|
|
12
23
|
},
|
|
13
24
|
"scripts": {
|
|
14
25
|
"dev": "next dev --turbo",
|
|
@@ -17,14 +28,16 @@
|
|
|
17
28
|
"lint": "next lint"
|
|
18
29
|
},
|
|
19
30
|
"dependencies": {
|
|
20
|
-
"@leonardofirme/package-npm": "^1.
|
|
31
|
+
"@leonardofirme/package-npm": "^1.2.0",
|
|
21
32
|
"clsx": "^2.1.1",
|
|
22
33
|
"framer-motion": "^12.4.7",
|
|
23
34
|
"lucide-react": "^0.575.0",
|
|
24
35
|
"next": "16.1.6",
|
|
25
36
|
"react": "19.2.3",
|
|
26
37
|
"react-dom": "19.2.3",
|
|
27
|
-
"tailwind-merge": "^3.5.0"
|
|
38
|
+
"tailwind-merge": "^3.5.0",
|
|
39
|
+
"fs-extra": "^11.2.0",
|
|
40
|
+
"chalk": "^5.3.0"
|
|
28
41
|
},
|
|
29
42
|
"devDependencies": {
|
|
30
43
|
"@tailwindcss/postcss": "^4",
|
|
@@ -35,6 +48,7 @@
|
|
|
35
48
|
"eslint": "^9",
|
|
36
49
|
"eslint-config-next": "16.1.6",
|
|
37
50
|
"tailwindcss": "^4",
|
|
38
|
-
"typescript": "^5"
|
|
51
|
+
"typescript": "^5",
|
|
52
|
+
"@types/fs-extra": "^11.0.4"
|
|
39
53
|
}
|
|
40
|
-
}
|
|
54
|
+
}
|
package/src/app/page.tsx
CHANGED
|
@@ -35,7 +35,7 @@ export default function HomePage() {
|
|
|
35
35
|
{/* Badge de Versão */}
|
|
36
36
|
<motion.div variants={ITEM_VARIANTS}>
|
|
37
37
|
<Badge className="bg-white px-5 py-1.5 font-orbitron tracking-[0.2em] text-gray-800 border-gray-200 dark:bg-gray-950/30 dark:border-gray-800 dark:text-gray-50">
|
|
38
|
-
ESTRUTURA V1.
|
|
38
|
+
ESTRUTURA V1.2.0 VALIDADA
|
|
39
39
|
</Badge>
|
|
40
40
|
</motion.div>
|
|
41
41
|
|