create-node-blueprint
Version:
A cli tool to generate nodejs project
59 lines (58 loc) • 1.48 kB
JSON
{
"name": "create-node-blueprint",
"version": "1.6.0",
"type": "module",
"description": "A cli tool to generate nodejs project",
"main": "dist/index.js",
"bin": {
"create-node-blueprint": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"copy": "cp -r src/template dist/src",
"build": "yarn run clean && tsc && yarn run copy",
"postbuild": "chmod +x dist/index.js",
"dev": "tsx index.ts create",
"prepublishOnly": "yarn run build"
},
"author": "Yogendra Rana <www.yogendrarana.com.np>",
"license": "ISC",
"dependencies": {
"@clack/prompts": "^0.10.1",
"consola": "^3.4.2",
"ejs": "^3.1.10",
"fs-extra": "^11.3.0",
"ora": "^8.2.0",
"picocolors": "^1.1.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/consola": "^2.2.8",
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.13.1",
"@types/yargs": "^17.0.33",
"del": "^8.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"keywords": [
"cli",
"create-node-blueprint",
"nodejs",
"express",
"typescript",
"postgres",
"mysql",
"mongodb",
"drizzle",
"prisma",
"mongoose",
"jwt-auth",
"better-auth",
"docker"
]
}