-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.19 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
{
"name": "react-starter-cli-kit",
"version": "1.0.2",
"description": "Interactive CLI to generate React, Vite, or Next.js projects with CSS frameworks & optional packages. Use with: npx react-starter-cli-kit",
"main": "dist/index.js",
"bin": {
"react-starter-cli": "dist/bin/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/bin/index.js"
},
"keywords": [
"react",
"vite",
"nextjs",
"starter",
"cli",
"typescript",
"tailwind",
"mui",
"shadcn",
"bootstrap",
"scaffold",
"generator",
"create-react-app",
"project-generator",
"frontend"
],
"repository": {
"type": "git",
"url": "git+https://github.com/deveshlashkari/react-starter-cli.git"
},
"bugs": {
"url": "https://github.com/deveshlashkari/react-starter-cli/issues"
},
"homepage": "https://github.com/deveshlashkari/react-starter-cli#readme",
"author": "Devesh Lashkari <devesh@example.com>",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"execa": "^9.0.0",
"inquirer": "^12.0.0",
"ora": "^8.0.0"
},
"devDependencies": {
"@types/node": "^24.3.0",
"typescript": "^5.9.2"
}
}