{
  "name": "@guanyilun/ashi",
  "version": "0.3.4",
  "description": "Ash in an interactive TUI — agent-sh's built-in agent without the shell underneath",
  "type": "module",
  "main": "dist/cli.js",
  "bin": {
    "ashi": "dist/cli.js"
  },
  "exports": {
    ".": "./dist/cli.js",
    "./render": {
      "types": "./dist/schema.d.ts",
      "import": "./dist/schema.js"
    },
    "./renderer": {
      "types": "./dist/renderer.d.ts",
      "import": "./dist/renderer.js"
    },
    "./events": {
      "types": "./dist/events.d.ts",
      "import": "./dist/events.js"
    },
    "./ui": {
      "types": "./dist/ui.d.ts",
      "import": "./dist/ui.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "EXTENDING.md",
    "docs"
  ],
  "scripts": {
    "dev": "tsx src/cli.ts",
    "clean": "rm -rf dist",
    "build": "npm run clean && tsc",
    "start": "node dist/cli.js",
    "test": "node --import tsx --test $(find tests -name '*.test.ts' -type f)",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "agent-sh",
    "ashi",
    "ash",
    "pi-tui",
    "tui",
    "agent",
    "ai",
    "llm",
    "cli"
  ],
  "author": "Yilun Guan",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/guanyilun/agent-sh.git",
    "directory": "examples/extensions/ashi"
  },
  "homepage": "https://github.com/guanyilun/agent-sh/tree/main/examples/extensions/ashi",
  "bugs": {
    "url": "https://github.com/guanyilun/agent-sh/issues"
  },
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@earendil-works/pi-tui": "^0.74.0",
    "agent-sh": "^0.15.0",
    "chalk": "^5.5.0",
    "cli-highlight": "^2.1.11"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "tsx": "^4.20.0",
    "typescript": "^5.7.0"
  }
}
