UNPKG

create-tin

Version:

Scaffold a TypeScript or JavaScript Express boilerplate

66 lines (65 loc) 1.53 kB
{ "name": "create-tin", "version": "1.1.1", "description": "Scaffold a TypeScript or JavaScript Express boilerplate", "main": "dist/bin/index.js", "type": "module", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "build": "npm run clean && tsc && npm run copy-templates", "copy-templates": "node scripts/copy-templates.mjs", "start": "node dist/bin/index.js", "dev": "tsc && node dist/bin/index.js", "prepublishOnly": "npm run build", "clean": "rimraf dist" }, "keywords": [ "express", "cli", "scaffold", "typescript", "javascript", "boilerplate", "jwt", "authentication", "mongodb", "create", "generator", "node" ], "author": "Your Name <your.email@example.com>", "license": "ISC", "engines": { "node": ">=16.0.0", "npm": ">=8.0.0" }, "repository": { "type": "git", "url": "https://github.com/aneeshsunganahalli/Tin" }, "bugs": { "url": "https://github.com/your-username/create-tin/issues" }, "homepage": "https://github.com/aneeshsunganahalli/Tin#readme", "dependencies": { "chalk": "^5.4.1", "commander": "^14.0.0", "fs-extra": "^11.3.0", "inquirer": "^12.6.3", "ora": "^8.2.0" }, "devDependencies": { "@types/fs-extra": "^11.0.4", "@types/node": "^24.0.1", "rimraf": "^5.0.5", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "bin": { "create-tin": "dist/bin/index.js" }, "files": [ "dist/", "scripts/" ] }