@abyrd9/harbor-cli
Version:
A CLI tool for orchestrating local development services in a tmux session. Perfect for microservices and polyglot projects with automatic service discovery and before/after script support.
56 lines (55 loc) • 1.38 kB
JSON
{
"name": "@abyrd9/harbor-cli",
"version": "2.4.4",
"description": "A CLI tool for orchestrating local development services in a tmux session. Perfect for microservices and polyglot projects with automatic service discovery and before/after script support.",
"type": "module",
"bin": {
"harbor": "dist/index.js"
},
"files": [
"dist",
"scripts",
"harbor.schema.json",
"harbor.package-json.schema.json"
],
"scripts": {
"check": "bunx npm-check -u",
"build": "bunx tsc",
"prepare": "bun run build",
"start": "bun dist/index.js",
"harbor": "bun dist/index.js",
"test": "vitest",
"test:watch": "vitest --watch",
"release": "bash release.sh"
},
"keywords": [
"cli",
"development",
"tmux",
"local-development"
],
"author": "Andrew Byrd",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Abyrd9/harbor-cli.git"
},
"bugs": {
"url": "https://github.com/Abyrd9/harbor-cli/issues"
},
"homepage": "https://github.com/Abyrd9/harbor-cli#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/node": "^24.0.3",
"bun-types": "latest",
"typescript": "^5.8.3",
"vitest": "^4.0.16"
},
"main": "index.js"
}