{
  "name": "@byfriends/cli",
  "version": "0.4.1",
  "description": "BYF (Be Your Friend), an AI coding agent that runs in your terminal",
  "keywords": [
    "ai",
    "byf",
    "cli",
    "coding-agent",
    "terminal",
    "tui"
  ],
  "homepage": "https://github.com/ByronFinn/byf",
  "bugs": {
    "url": "https://github.com/ByronFinn/byf/issues"
  },
  "license": "MIT",
  "author": "ByronFinn",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ByronFinn/byf.git"
  },
  "bin": {
    "byf": "bin/byf.cjs"
  },
  "files": [
    "bin",
    "dist",
    "scripts/postinstall.mjs",
    "README.md"
  ],
  "type": "module",
  "imports": {
    "#/*": [
      "./src/*.ts",
      "./src/*/index.ts"
    ]
  },
  "publishConfig": {
    "access": "public",
    "provenance": false
  },
  "scripts": {
    "build": "bun scripts/build.mjs",
    "catalog:update": "node scripts/update-catalog.mjs --out dist/built-in-catalog.json",
    "smoke": "node scripts/smoke.mjs",
    "build:native:compile": "bun scripts/compile/build.mjs --profile=local",
    "build:native:release": "bun scripts/compile/build.mjs --profile=release",
    "package:native": "node scripts/native/package.mjs",
    "package:npm-platforms": "bun scripts/npm/package-platforms.mjs",
    "produce:native:manifest": "node scripts/native/produce-manifest.mjs",
    "release:native:resolve": "node scripts/native/resolve-release.mjs",
    "test:native:smoke": "node scripts/native/smoke.mjs",
    "dev": "bun ./src/main.ts",
    "dev:prod": "bun dist/main.mjs",
    "clean": "rm -rf dist && rm -rf dist-types",
    "typecheck": "tsc --build",
    "test": "bun test",
    "e2e": "BYF_E2E=1 bun test test/e2e",
    "e2e:real": "BYF_E2E_REAL=1 bun test test/e2e/real-llm-smoke.e2e.test.ts",
    "postinstall": "node scripts/postinstall.mjs"
  },
  "dependencies": {
    "@byfriends/vis-server": "^0.4.0",
    "@earendil-works/pi-tui": "^0.74.0",
    "@mariozechner/clipboard": "^0.3.9",
    "chalk": "^5.4.1",
    "cli-highlight": "^2.1.11",
    "commander": "^13.1.0",
    "open": "^10.2.0",
    "semver": "^7.7.4",
    "smol-toml": "^1.6.1",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@byfriends/sdk": "^0.4.0",
    "@types/semver": "^7.7.0",
    "@types/yazl": "^2.4.6",
    "yazl": "^3.3.1"
  },
  "optionalDependencies": {
    "@byfriends/cli-darwin-arm64": "0.4.1",
    "@byfriends/cli-linux-x64": "0.4.1"
  },
  "engines": {
    "bun": ">=1.3.14"
  }
}
