{
  "name": "portman-tui",
  "version": "1.0.2",
  "description": "🚀 Beautiful TUI for managing ports - kill processes, find free ports, and more",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "portman": "./dist/cli.js"
  },
  "scripts": {
    "build": "tsc && chmod +x dist/cli.js",
    "dev": "tsx src/cli.tsx",
    "start": "node dist/cli.js",
    "lint": "eslint src --ext .ts,.tsx",
    "lint:fix": "eslint src --ext .ts,.tsx --fix",
    "format": "prettier --write \"src/**/*.{ts,tsx,json}\"",
    "format:check": "prettier --check \"src/**/*.{ts,tsx,json}\"",
    "type-check": "tsc --noEmit",
    "prepublishOnly": "npm run lint && npm run format:check && npm run build",
    "clean": "rm -rf dist"
  },
  "keywords": [
    "port",
    "manager",
    "tui",
    "cli",
    "devtools",
    "terminal",
    "process",
    "kill",
    "ports",
    "networking"
  ],
  "author": "Your Name <your.email@example.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/sidgaikwad/portman.git"
  },
  "bugs": {
    "url": "https://github.com/sidgaikwad/portman/issues"
  },
  "homepage": "https://github.com/sidgaikwad/portman#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "chalk": "^5.3.0",
    "commander": "^12.0.0",
    "figures": "^6.1.0",
    "gradient-string": "^2.0.2",
    "ink": "^5.2.0",
    "ink-big-text": "^2.0.0",
    "ink-gradient": "^3.0.0",
    "ink-select-input": "^6.2.0",
    "ink-spinner": "^5.0.0",
    "ink-text-input": "^6.0.0",
    "react": "^18.3.1"
  },
  "devDependencies": {
    "@types/gradient-string": "^1.1.6",
    "@types/node": "^20.11.19",
    "@types/react": "^18.2.55",
    "@typescript-eslint/eslint-plugin": "^7.0.1",
    "@typescript-eslint/parser": "^7.0.1",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-react": "^7.33.2",
    "eslint-plugin-react-hooks": "^4.6.0",
    "prettier": "^3.2.5",
    "tsx": "^4.7.1",
    "typescript": "^5.3.3"
  }
}
