{
  "name": "port-authority-agent-terminal-mcp",
  "version": "0.3.10",
  "description": "Cross-platform (Windows + macOS) lane coordinator for AI coding agents (Claude, Codex, etc.) — keeps multiple local agents from colliding on dev-server ports, Chrome debug ports, and Chrome user profiles. Includes a CLI, an MCP server, and a native Tauri dashboard (no localhost server).",
  "license": "MIT",
  "author": "charlesonogwu",
  "homepage": "https://github.com/charlesonogwu/port-authority-agent-terminal#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/charlesonogwu/port-authority-agent-terminal.git"
  },
  "bugs": {
    "url": "https://github.com/charlesonogwu/port-authority-agent-terminal/issues"
  },
  "type": "module",
  "bin": {
    "paat": "dist/src/cli/index.js",
    "port-authority": "dist/src/cli/index.js",
    "portpilot": "dist/src/cli/index.js"
  },
  "main": "dist/src/core/index.js",
  "types": "dist/src/core/index.d.ts",
  "exports": {
    ".": "./dist/src/core/index.js",
    "./cli": "./dist/src/cli/index.js",
    "./mcp": "./dist/src/mcp/server.js"
  },
  "files": [
    "dist/src",
    "assets/paat.ico",
    "assets/paat-256.png",
    "assets/paat-banner.png",
    "assets/paat-readme-banner.png",
    "bin/paat-dashboard.exe",
    "bin/paat-dashboard-darwin-x64",
    "bin/paat-dashboard-darwin-arm64",
    "bin/paat-dashboard-linux-x64",
    "bin/paat-dashboard-linux-arm64",
    "gui/package.json",
    "gui/package-lock.json",
    "gui/index.html",
    "gui/vite.config.ts",
    "gui/tsconfig.json",
    "gui/tsconfig.app.json",
    "gui/tsconfig.node.json",
    "gui/components.json",
    "gui/public",
    "gui/src",
    "gui/src-tauri/Cargo.toml",
    "gui/src-tauri/Cargo.lock",
    "gui/src-tauri/build.rs",
    "gui/src-tauri/tauri.conf.json",
    "gui/src-tauri/capabilities",
    "gui/src-tauri/icons",
    "gui/src-tauri/src",
    "scripts/postinstall.cjs",
    "scripts/build-dashboard-tauri.cjs",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "npm run build:icons && npm run build:dashboard && tsc -p tsconfig.json",
    "build:server": "tsc -p tsconfig.json",
    "build:icons": "node scripts/build-icons.mjs",
    "build:dashboard": "node scripts/build-dashboard-tauri.cjs",
    "build:dashboard:strict": "node scripts/build-dashboard-tauri.cjs --strict",
    "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
    "dev": "tsx src/cli/index.ts",
    "prepare": "node scripts/prepare.cjs",
    "prepack": "node scripts/prepack.cjs",
    "postinstall": "node -e \"try{require('./scripts/postinstall.cjs')}catch(e){if(e&&e.code==='MODULE_NOT_FOUND'&&String(e.message).includes('scripts/postinstall.cjs')){console.warn('[paat postinstall] skipped missing helper: '+e.message);process.exit(0)}throw e}\"",
    "test": "tsc -p tsconfig.json && node --test --test-reporter=spec dist/tests/*.test.js",
    "lint": "tsc -p tsconfig.json --noEmit",
    "chrome": "tsx scripts/chrome.ts",
    "robust-test": "tsx scripts/robust-test.ts",
    "robust-test:verbose": "tsx scripts/robust-test.ts --verbose",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "keywords": [
    "windows",
    "ai-agents",
    "agent-coordination",
    "claude",
    "claude-desktop",
    "codex",
    "codex-desktop",
    "chrome",
    "chrome-devtools-protocol",
    "cdp",
    "remote-debugging",
    "playwright",
    "puppeteer",
    "ports",
    "lane",
    "mcp",
    "model-context-protocol",
    "dashboard"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "devDependencies": {
    "@types/node": "^22.10.0",
    "png-to-ico": "^3.0.1",
    "sharp": "^0.34.5",
    "tsx": "^4.19.2",
    "typescript": "^5.7.2"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.4"
  }
}
