peezy-cli
Version:
Production-ready CLI for scaffolding modern applications with curated full-stack templates, intelligent migrations, and enterprise security.
106 lines (105 loc) • 2.72 kB
JSON
{
"name": "peezy-cli",
"version": "1.0.3",
"description": "Production-ready CLI for scaffolding modern applications with curated full-stack templates, intelligent migrations, and enterprise security.",
"type": "module",
"bin": {
"peezy": "bin/peezy.mjs"
},
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "node --enable-source-maps ./dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run test && npm run build",
"postpack": "rm -f *.tgz",
"pack:test": "npm pack --dry-run",
"publish:dry": "npm publish --dry-run",
"start": "npm run build && node dist/index.js",
"link:global": "npm run build && npm link",
"unlink:global": "npm unlink -g peezy-cli",
"build:binaries": "node scripts/build-binaries.js",
"update:distribution": "node scripts/update-distribution.js",
"test:distribution": "node scripts/test-distribution.js",
"check": "npm run lint && npm test && npm run build",
"validate:workflows": "node scripts/validate-workflows.js",
"lint": "tsc --noEmit",
"release": "npm run build && npm run build:binaries && npm run update:distribution"
},
"keywords": [
"cli",
"scaffold",
"template",
"fullstack",
"nextjs",
"react",
"express",
"typescript",
"migration",
"security",
"sigstore",
"deterministic",
"reproducible",
"json-output",
"database",
"orm",
"prisma",
"drizzle",
"docker",
"volumes",
"vue",
"flask",
"fastapi",
"bun",
"vite",
"tailwind",
"lock-file",
"integrity",
"enterprise",
"production-ready"
],
"author": "Sehnya",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Sehnya/peezy-cli.git"
},
"bugs": {
"url": "https://github.com/Sehnya/peezy-cli/issues"
},
"homepage": "https://github.com/Sehnya/peezy-cli#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"@sigstore/sign": "^2.2.1",
"@sigstore/verify": "^1.0.0",
"commander": "^12.1.0",
"glob": "^10.3.10",
"prompts": "^2.4.2",
"semver": "^7.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.6",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"pkg": "^5.8.1",
"ts-jest": "^29.1.2",
"typescript": "^5.5.4",
"vitest": "^3.2.4"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map",
"!dist/**/__tests__/**",
"templates",
"bin"
]
}