UNPKG

@ssit-hub/mvp-generate-template

Version:

A beautiful CLI tool to quickly generate MVP project templates with modern frameworks and best practices

35 lines (34 loc) 875 B
{ "name": "project-name", "version": "1.0.0", "description": "A basic Node.js CLI application with TypeScript and ESBuild", "main": "dist/index.js", "bin": { "mycli": "dist/index.js" }, "scripts": { "start": "node dist/index.js", "dev": "node esbuild.config.mjs --watch", "build": "node esbuild.config.mjs", "build:prod": "NODE_ENV=production node esbuild.config.mjs", "typecheck": "tsc --noEmit" }, "dependencies": { "commander": "^11.0.0", "chalk": "^4.1.2", "inquirer": "^8.2.6" }, "devDependencies": { "typescript": "^5.0.0", "@types/node": "^20.0.0", "@types/inquirer": "^9.0.3", "esbuild": "^0.19.0" }, "engines": { "node": ">=16.0.0", "npm": ">=7.0.0" }, "keywords": ["template", "mvp", "cli", "node", "commander", "typescript", "esbuild"], "author": "", "license": "MIT" }