{
  "name": "@portmux/cli",
  "version": "0.8.0",
  "description": "CLI for PortMux",
  "repository": {
    "type": "git",
    "url": "https://github.com/YTakahashii/portmux.git"
  },
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "schemas"
  ],
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./schemas/portmux.config.schema.json": {
      "default": "./schemas/portmux.config.schema.json"
    }
  },
  "bin": {
    "portmux": "./dist/index.js"
  },
  "keywords": [
    "cli",
    "portmux",
    "port",
    "multiplexer",
    "process-management",
    "developer-tools",
    "git-worktree",
    "development-workflow",
    "background-processes",
    "port-conflict",
    "eaddrinuse"
  ],
  "author": "YTakahashii",
  "license": "MIT",
  "engines": {
    "node": ">=20.0.0",
    "pnpm": ">=10.21.0"
  },
  "dependencies": {
    "chalk": "^5.3.0",
    "commander": "^14.0.0",
    "inquirer": "^9.3.7",
    "tcp-port-used": "^1.0.2",
    "@portmux/core": "0.4.0"
  },
  "devDependencies": {
    "@types/inquirer": "^9.0.8",
    "@types/node": "^24.10.1",
    "typescript": "^5.7.3",
    "vitest": "^4.0.8"
  },
  "scripts": {
    "typecheck": "tsc --noEmit",
    "build": "tsc",
    "dev": "node ./dist/index.js",
    "test": "vitest"
  }
}