UNPKG

deploy-neex

Version:

🚀 CLI tool for deploying Neex applications with PM2 and Nginx

75 lines • 1.65 kB
{ "name": "deploy-neex", "version": "0.1.0", "description": "🚀 CLI tool for deploying Neex applications with PM2 and Nginx", "main": "dist/index.js", "type": "module", "bin": { "deploy-neex": "dist/cli.js" }, "scripts": { "build": "tsc", "dev": "tsx src/cli.ts", "prepublishOnly": "npm run build", "start": "node dist/cli.js", "test": "echo \"Error: no test specified\" && exit 1", "lint": "eslint src/**/*.ts", "clean": "rm -rf dist" }, "keywords": [ "neex", "deploy", "deployment", "pm2", "nginx", "nextjs", "express", "cli", "devops", "automation", "fullstack" ], "author": { "name": "Your Name", "email": "your.email@example.com", "url": "https://yourwebsite.com" }, "license": "MIT", "dependencies": { "chalk": "^5.3.0", "commander": "^11.0.0", "detect-port": "^1.5.0", "execa": "^8.0.0", "fs-extra": "^11.1.0", "inquirer": "^9.2.0", "ora": "^7.0.0", "yaml": "^2.3.0" }, "devDependencies": { "@types/detect-port": "^1.3.5", "@types/fs-extra": "^11.0.0", "@types/inquirer": "^9.0.0", "@types/node": "^20.0.0", "tsx": "^4.0.0", "typescript": "^5.0.0" }, "engines": { "node": ">=18.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/yourusername/deploy-neex.git" }, "bugs": { "url": "https://github.com/yourusername/deploy-neex/issues" }, "homepage": "https://github.com/yourusername/deploy-neex#readme", "files": [ "dist", "README.md", "LICENSE" ], "publishConfig": { "access": "public" } }