-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.45 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.45 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "devstart-cli",
"version": "1.1.0",
"description": "A powerful CLI tool that scaffolds production-ready Next.js projects with your preferred tech stack in seconds",
"main": "src/index.js",
"type": "module",
"files": [
"bin/",
"src/",
"README.md",
"LICENSE",
"CONTRIBUTING.md"
],
"bin": {
"devstart": "./bin/index.js",
"create-devstart-app": "./bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node bin/index.js",
"prepublishOnly": "echo 'Ready to publish'"
},
"keywords": [
"cli",
"scaffold",
"nextjs",
"react",
"vite",
"remix",
"template",
"boilerplate",
"generator",
"project-setup",
"tailwind",
"typescript",
"supabase"
],
"author": "Akshad Jaiswal <https://github.com/akshadjaiswal>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/akshadjaiswal/devstart.git"
},
"bugs": {
"url": "https://github.com/akshadjaiswal/devstart/issues"
},
"homepage": "https://github.com/akshadjaiswal/devstart#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.0.0",
"ejs": "^3.1.9",
"execa": "^8.0.0",
"figlet": "^1.9.4",
"fs-extra": "^11.1.0",
"gradient-string": "^3.0.0",
"inquirer": "^9.2.0",
"ora": "^7.0.0",
"validate-npm-package-name": "^5.0.0"
}
}