forked from MedNT/create-next-custom-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "create-next-custom-app",
"version": "1.2.0",
"source": "src/index.js",
"main": "dist/index.js",
"scripts": {
"start": "node src/index.js",
"format": "prettier --write .",
"lint": "eslint .",
"build": "parcel build && node ./scripts/add-shebang.js",
"add-shebang": "node ./scripts/add-shebang.js"
},
"bin": {
"create-next-custom-app": "dist/index.js"
},
"author": "NACIRI TAOUFIK Mohamed",
"license": "MIT",
"type": "module",
"keywords": [
"nextjs",
"cli",
"create-next-app",
"web-development",
"javascript",
"typescript",
"open-source"
],
"description": "A CLI tool designed to simplify the creation of Next.js applications with custom configurations.",
"dependencies": {
"chalk": "^5.3.0",
"execa": "^9.4.1",
"figlet": "^1.8.0",
"figures": "^6.1.0",
"gradient-string": "^3.0.0",
"inquirer": "^12.0.1"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"parcel": "^2.12.0",
"prettier": "^3.3.3"
}
}