@tioelvis/next-template 1.0.7 → 1.0.8

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 (2) hide show
  1. package/package.json +57 -57
  2. package/src/main.js +6 -0
package/package.json CHANGED
@@ -1,57 +1,57 @@
1
- {
2
- "name": "@tioelvis/next-template",
3
- "version": "1.0.7",
4
- "description": "CLI to scaffold a Next.js + Tailwind project using shadcn/ui components",
5
- "type": "module",
6
- "bin": {
7
- "next-template": "./src/main.js"
8
- },
9
- "keywords": [
10
- "cli",
11
- "nextjs",
12
- "shadcn",
13
- "tailwind",
14
- "ui",
15
- "project-generator",
16
- "scaffolding"
17
- ],
18
- "author": {
19
- "name": "Ti0Elvis",
20
- "email": "elvis.veramijares@gmail.com"
21
- },
22
- "license": "MIT",
23
- "repository": {
24
- "type": "git",
25
- "url": "https://github.com/Ti0Elvis/next-template"
26
- },
27
- "dependencies": {
28
- "chalk": "^5.4.1",
29
- "prompts": "^2.4.2"
30
- },
31
- "devDependencies": {
32
- "@eslint/eslintrc": "^3.3.1",
33
- "@radix-ui/react-accordion": "^1.2.11",
34
- "@tailwindcss/postcss": "^4.1.11",
35
- "@tanstack/react-query": "^5.83.0",
36
- "@types/node": "^24.1.0",
37
- "@types/react": "^19.1.8",
38
- "@types/react-dom": "^19.1.6",
39
- "axios": "^1.11.0",
40
- "class-variance-authority": "^0.7.1",
41
- "clsx": "^2.1.1",
42
- "cookies-next": "^6.1.0",
43
- "date-fns": "^4.1.0",
44
- "eslint": "^9.32.0",
45
- "eslint-config-next": "^15.4.4",
46
- "lucide-react": "^0.532.0",
47
- "next": "^15.4.4",
48
- "next-auth": "^4.24.11",
49
- "next-themes": "^0.4.6",
50
- "react": "^19.1.0",
51
- "react-dom": "^19.1.0",
52
- "tailwind-merge": "^3.3.1",
53
- "tailwindcss": "^4.1.11",
54
- "tw-animate-css": "^1.3.6",
55
- "typescript": "^5.8.3"
56
- }
57
- }
1
+ {
2
+ "name": "@tioelvis/next-template",
3
+ "version": "1.0.8",
4
+ "description": "CLI to scaffold a Next.js + Tailwind project using shadcn/ui components",
5
+ "type": "module",
6
+ "bin": {
7
+ "next-template": "./src/main.js"
8
+ },
9
+ "keywords": [
10
+ "cli",
11
+ "nextjs",
12
+ "shadcn",
13
+ "tailwind",
14
+ "ui",
15
+ "project-generator",
16
+ "scaffolding"
17
+ ],
18
+ "author": {
19
+ "name": "Ti0Elvis",
20
+ "email": "elvis.veramijares@gmail.com"
21
+ },
22
+ "license": "MIT",
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/Ti0Elvis/next-template"
26
+ },
27
+ "dependencies": {
28
+ "chalk": "^5.4.1",
29
+ "prompts": "^2.4.2"
30
+ },
31
+ "devDependencies": {
32
+ "@eslint/eslintrc": "^3.3.1",
33
+ "@radix-ui/react-accordion": "^1.2.11",
34
+ "@tailwindcss/postcss": "^4.1.11",
35
+ "@tanstack/react-query": "^5.83.0",
36
+ "@types/node": "^24.1.0",
37
+ "@types/react": "^19.1.8",
38
+ "@types/react-dom": "^19.1.6",
39
+ "axios": "^1.11.0",
40
+ "class-variance-authority": "^0.7.1",
41
+ "clsx": "^2.1.1",
42
+ "cookies-next": "^6.1.0",
43
+ "date-fns": "^4.1.0",
44
+ "eslint": "^9.32.0",
45
+ "eslint-config-next": "^15.4.4",
46
+ "lucide-react": "^0.532.0",
47
+ "next": "^15.4.4",
48
+ "next-auth": "^4.24.11",
49
+ "next-themes": "^0.4.6",
50
+ "react": "^19.1.0",
51
+ "react-dom": "^19.1.0",
52
+ "tailwind-merge": "^3.3.1",
53
+ "tailwindcss": "^4.1.11",
54
+ "tw-animate-css": "^1.3.6",
55
+ "typescript": "^5.8.3"
56
+ }
57
+ }
package/src/main.js CHANGED
@@ -94,6 +94,12 @@ async function main() {
94
94
  }
95
95
 
96
96
  console.log(chalk.green("\nāœ… Project created successfully! šŸš€"));
97
+
98
+ console.log(
99
+ chalk.yellow(
100
+ "šŸ“„ Make sure to add your API in the .env file, e.g.: API=http://localhost:9000"
101
+ )
102
+ );
97
103
  process.exit(0);
98
104
  } catch (error) {
99
105
  console.error(chalk.red("āŒ Internal error"), error.message);