UNPKG

vibe-init

Version:

Create a new project with good vibes ✨ - A modern full-stack monorepo template

51 lines (50 loc) 1.11 kB
{ "name": "vibe-init", "version": "2.0.1", "description": "Create a new project with good vibes ✨ - A modern full-stack monorepo template", "main": "index.js", "bin": { "vibe-init": "index.js" }, "scripts": { "dev": "node index.js", "lint": "echo \"Add linting here\"", "clean": "rm -rf node_modules && rm -rf test-* && rm -rf *-test*", "validate": "node index.js --help > /dev/null && node index.js --list > /dev/null", "prepublishOnly": "pnpm run clean && pnpm install && pnpm run validate" }, "keywords": [ "template", "create", "vibe", "turborepo", "monorepo", "react", "vite", "cli" ], "author": "Ilker Cakir", "license": "MIT", "dependencies": { "inquirer": "^8.2.4", "fs-extra": "^11.1.1", "mustache": "^4.2.0", "chalk": "^4.1.2", "ora": "^5.4.1" }, "engines": { "node": ">=16.0.0", "pnpm": ">=8.0.0" }, "packageManager": "pnpm@8.15.0", "files": [ "index.js", "lib/", "templates/", "README.md", "SETUP.md" ], "publishConfig": { "access": "public" } }