{
  "name": "@boardwalk-labs/runner",
  "version": "0.3.40",
  "description": "Boardwalk self-hosted runner: execute cloud-scheduled runs on your own machines. Currently: the canonical runner contract types.",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/boardwalk-labs/runner.git"
  },
  "homepage": "https://github.com/boardwalk-labs/runner#readme",
  "type": "module",
  "engines": {
    "node": ">=24"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./contract": {
      "types": "./dist/contract.d.ts",
      "default": "./dist/contract.js"
    },
    "./runtime": {
      "types": "./dist/runtime/index.d.ts",
      "default": "./dist/runtime/index.js"
    },
    "./runtime/main": {
      "types": "./dist/runtime/main.d.ts",
      "default": "./dist/runtime/main.js"
    },
    "./daemon": {
      "types": "./dist/daemon/index.d.ts",
      "default": "./dist/daemon/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "native",
    "binding.gyp",
    "prebuilds"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "typecheck": "tsc --noEmit && tsc -p conformance --noEmit",
    "lint": "eslint . --max-warnings 0",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "test": "vitest run --coverage",
    "test:watch": "vitest",
    "prebuild": "prebuildify --napi --strip -t 24.0.0"
  },
  "dependencies": {
    "@boardwalk-labs/engine": "0.3.5",
    "@boardwalk-labs/workflow": "0.3.12",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "ajv": "^8.20.0",
    "node-gyp-build": "^4.8.4",
    "tar": "^7.5.16",
    "undici": "^6.27.0",
    "zod": "^4.0.0"
  },
  "devDependencies": {
    "@eslint/js": "^9.18.0",
    "@types/node": "^24.0.0",
    "@vitest/coverage-v8": "^3.2.6",
    "eslint": "^9.18.0",
    "node-gyp": "^11.0.0",
    "prebuildify": "^6.0.1",
    "prettier": "^3.4.0",
    "typescript": "^5.6.0",
    "typescript-eslint": "^8.20.0",
    "vitest": "^3.0.0"
  },
  "bin": {
    "boardwalk-runner": "./dist/bin.js"
  }
}
