{
  "name": "@crouton-kit/humanloop",
  "version": "0.4.0",
  "description": "Human-in-the-loop decision TUI — agents write questions, humans answer them",
  "engines": {
    "node": ">=22.19.0"
  },
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "workspaces": [
    "web"
  ],
  "bin": {
    "hl": "dist/cli.js"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./cli": {
      "import": "./dist/cli.js"
    }
  },
  "files": [
    "dist",
    "commands"
  ],
  "scripts": {
    "build": "tsc && npm run build --workspace=web",
    "postbuild": "chmod +x dist/cli.js",
    "dev": "tsx src/cli.ts",
    "link": "npm link",
    "postinstall": "node dist/scripts/install-renderer.js || true",
    "test": "node scripts/run-tests.mjs"
  },
  "dependencies": {
    "commander": "^13.0.0",
    "string-width": "^7.0.0",
    "ws": "^8.21.0",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "@types/ws": "^8.18.1",
    "tsx": "^4.0.0",
    "typescript": "^5.7.0"
  }
}
