{
  "name": "@breadboard-ai/runtime",
  "version": "0.1.0",
  "description": "The Breadboard runtime",
  "main": "./dist/src/index.js",
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "default": "./dist/src/index.js"
    },
    "./legacy.js": {
      "types": "./dist/src/legacy.d.ts",
      "default": "./dist/src/legacy.js"
    }
  },
  "type": "module",
  "scripts": {
    "prepack": "npm run build",
    "test": "wireit",
    "build": "wireit",
    "lint": "wireit"
  },
  "wireit": {
    "build": {
      "dependencies": [
        "build:tsc"
      ]
    },
    "build:tsc": {
      "command": "tsc -b --pretty",
      "dependencies": [
        "<dependencies>#build"
      ],
      "env": {
        "FORCE_COLOR": "1"
      },
      "files": [
        "src/**/*.ts",
        "tests/**/*.ts",
        "tsconfig.json",
        "../../core/tsconfig/base.json"
      ],
      "output": [
        "dist/",
        "!dist/**/*.min.js{,.map}"
      ],
      "clean": "if-file-deleted"
    },
    "test": {
      "dependencies": [
        "test:ava",
        "test:node"
      ]
    },
    "test:ava": {
      "command": "ava",
      "env": {
        "FORCE_COLOR": "1"
      },
      "dependencies": [
        "build:tsc"
      ],
      "files": [
        "tests/ava/**/*.json",
        "!tests/node/**/*.ts"
      ],
      "output": []
    },
    "test:node": {
      "command": "node --test --enable-source-maps --test-reporter spec dist/tests/node/*.js",
      "dependencies": [
        "build:tsc"
      ],
      "files": [
        "tests/node/**/*.ts",
        "tests/bgl/*.bgl.json"
      ],
      "output": []
    },
    "lint": {
      "command": "eslint . --ext .ts",
      "env": {
        "FORCE_COLOR": "1"
      },
      "dependencies": [
        "build:tsc"
      ],
      "files": [
        ".eslintrc",
        "../../.eslintrc.json"
      ],
      "output": []
    }
  },
  "repository": {
    "directory": "packages/runtime",
    "type": "git",
    "url": "https://github.com/breadboard-ai/breadboard.git"
  },
  "files": [
    "dist/src"
  ],
  "ava": {
    "timeout": "30s",
    "files": [
      "tests/ava/**/*.ts"
    ],
    "workerThreads": false,
    "typescript": {
      "rewritePaths": {
        "./": "dist/"
      },
      "compile": false
    }
  },
  "keywords": [],
  "author": "Google Labs Team",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/breadboard-ai/breadboard/issues"
  },
  "homepage": "https://github.com/breadboard-ai/breadboard#readme",
  "devDependencies": {
    "@google-labs/tsconfig": "^0.0.2",
    "@types/node": "^22.0.0",
    "@typescript-eslint/eslint-plugin": "^8.35.0",
    "@typescript-eslint/parser": "^8.34.1",
    "ava": "6.4.0",
    "typescript": "^5.8.3"
  },
  "dependencies": {
    "@breadboard-ai/data": "0.0.2",
    "@breadboard-ai/loader": "0.0.2",
    "@breadboard-ai/types": "0.8.0",
    "@breadboard-ai/utils": "0.0.2"
  }
}
