-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.3 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "init-mate",
"version": "1.0.1",
"description": "A CLI tool that simplifies project initialization for React or Next.js applications by setting up common folder structures, installing packages, and configuring state management.",
"main": "./bin/cli.mjs",
"bin": {
"init-mate": "./bin/cli.mjs"
},
"type": "module",
"scripts": {
"start": "node ./bin/cli.mjs",
"postinstall": "node ./scripts/postinstall.mjs"
},
"keywords": [
"react",
"next.js",
"cli",
"project setup",
"redux",
"context api",
"init",
"npm",
"package"
],
"author": "Yash Jivani [email protected]",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"inquirer": "^10.2.2",
"ora": "^8.1.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"prettier": "^3.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/yash-jivani/init-mate.git"
},
"homepage": "https://github.com/yash-jivani/init-mate#readme",
"bugs": {
"url": "https://github.com/yash-jivani/init-mate/issues"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"bin",
"code-formatter",
"constants",
"frameworks",
"lib",
"others",
"scripts",
"state-managers",
"README.md",
"LICENSE"
]
}