-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 969 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 969 Bytes
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
{
"name": "@ingsystemcix/express-cli",
"description": "A CLI tool for generating Express.js applications",
"version": "1.0.7",
"main": "src/index.ts",
"type": "module",
"bin": {
"express-cli": "./dist/index.js"
},
"devDependencies": {
"@types/bun": "latest",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.13.17",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"peerDependencies": {
"typescript": "^5.8.2"
},
"author": "Juan Bladimir Romero Collazos",
"license": "MIT",
"dependencies": {
"@types/cli-progress": "^3.11.6",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"cli-progress": "^3.12.0",
"commander": "^13.1.0",
"execa": "^9.5.2",
"fs-extra": "^11.3.0",
"inquirer": "^12.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/IngSystemCix/express-cli.git"
},
"keywords": [
"express",
"cli",
"typescript"
]
}