Files
blackroad-deploy/cli/package.json
Alexa Louise b53b190f7b Initial commit: BlackRoad Deploy - Railway alternative
Complete self-hosted deployment platform with:
- Deployment API (Node.js + TypeScript + Docker)
- CLI tool (blackroad command)
- Cloudflare Tunnel integration
- PostgreSQL database
- Docker Compose setup
- Raspberry Pi support

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-15 15:11:38 -06:00

44 lines
970 B
JSON

{
"name": "blackroad-cli",
"version": "1.0.0",
"description": "BlackRoad Deploy CLI - Deploy applications to your own infrastructure",
"main": "dist/index.js",
"bin": {
"blackroad": "./dist/index.js",
"br": "./dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc && chmod +x dist/index.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"commander": "^11.1.0",
"axios": "^1.6.5",
"chalk": "^4.1.2",
"ora": "^5.4.1",
"inquirer": "^8.2.5",
"dotenv": "^16.3.1",
"fs-extra": "^11.2.0",
"tar": "^6.2.0"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@types/inquirer": "^8.2.10",
"@types/fs-extra": "^11.0.4",
"@types/tar": "^6.1.11",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"keywords": [
"deploy",
"deployment",
"paas",
"hosting",
"docker",
"cloudflare"
],
"author": "BlackRoad Systems",
"license": "MIT"
}