{
  "name": "@openbuff/cli",
  "version": "1.1.5",
  "description": "An AI coding agent that writes code for you. Run it from your project directory, tell it what to do, and it reads and writes files, runs commands, and iterates until the task is done. Supports sub-agents, custom tools, and Bring-Your-Own-Key providers.",
  "license": "MIT",
  "keywords": [
    "ai",
    "agent",
    "coding-agent",
    "cli",
    "terminal",
    "developer-tools",
    "code-generator",
    "assistant",
    "automation",
    "tui"
  ],
  "bin": {
    "openbuff": "index.js",
    "cb": "index.js"
  },
  "scripts": {
    "postinstall": "node postinstall.js",
    "preuninstall": "node -e \"const fs = require('fs'); const path = require('path'); const os = require('os'); const configDir = path.join(os.homedir(), '.config', 'openbuff'); for (const name of (process.platform === 'win32' ? ['openbuff.exe'] : ['openbuff'])) { try { fs.unlinkSync(path.join(configDir, name)) } catch (e) { /* ignore if file doesn't exist */ } }\""
  },
  "files": [
    "index.js",
    "http.js",
    "postinstall.js",
    "README.md"
  ],
  "os": [
    "darwin",
    "linux",
    "win32"
  ],
  "cpu": [
    "x64",
    "arm64"
  ],
  "engines": {
    "node": ">=16"
  },
  "dependencies": {
    "tar": "^7.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/AnzoBenjamin/openbuff.git"
  },
  "homepage": "https://openbuff.dev",
  "publishConfig": {
    "access": "public"
  }
}
