-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.44 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.44 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
{
"name": "@adandev/express-craft",
"version": "0.2.0",
"description": "A CLI tool to scaffold Express.js applications",
"type": "module",
"main": "dist/cli.js",
"bin": {
"express-craft": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "node --import tsx src/cli.ts",
"start": "npm run build && node dist/cli.js",
"test": "npm run build && node test/test-simple.js",
"test:full": "npm run build && node test/test-cli.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"cli",
"express",
"scaffold",
"nodejs",
"generator",
"boilerplate",
"template",
"javascript",
"es-modules"
],
"author": {
"name": "Adan-Perez",
"url": "https://github.com/Adan-Perez"
},
"license": "MIT",
"dependencies": {
"chalk": "^5.4.1",
"commander": "^14.0.0",
"fs-extra": "^11.3.0",
"inquirer": "^9.2.0",
"ora": "^8.2.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.8",
"@types/node": "^24.0.1",
"nodemon": "^3.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adan-Perez/express-craft-cli.git"
},
"bugs": {
"url": "https://github.com/Adan-Perez/express-craft-cli/issues"
},
"homepage": "https://github.com/Adan-Perez/express-craft-cli#readme"
}