{
  "name": "arial-server",
  "version": "0.0.10",
  "description": "Arial execution server - runs specs in parallel and creates GitHub PRs",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "arial-server": "./dist/index.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./config": {
      "types": "./dist/config/index.d.ts",
      "import": "./dist/config/index.js"
    }
  },
  "keywords": [
    "arial",
    "server",
    "claude",
    "ai",
    "executor",
    "parallel",
    "github",
    "pr"
  ],
  "author": "Arial Contributors",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sneub/arial-sh.git",
    "directory": "apps/server"
  },
  "homepage": "https://arial.sh",
  "bugs": "https://github.com/sneub/arial-sh/issues",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "bun": ">=1.0.0"
  },
  "devDependencies": {
    "@types/bun": "^1.2.4",
    "eslint": "^9.39.1",
    "typescript": "^5.9.3",
    "@workspace/eslint-config": "0.0.0",
    "@workspace/typescript-config": "0.0.0"
  },
  "dependencies": {
    "@anthropic-ai/claude-agent-sdk": "^0.1.76"
  },
  "scripts": {
    "dev": "bun run --watch src/index.ts",
    "start": "bun run src/index.ts",
    "build": "bun build src/index.ts src/config/index.ts --outdir dist --target bun && tsc --emitDeclarationOnly --outDir dist",
    "typecheck": "tsc --noEmit",
    "lint": "eslint .",
    "test": "bun test"
  }
}