{
  "name": "@google-labs/breadboard",
  "publishConfig": {
    "registry": "https://wombat-dressing-room.appspot.com"
  },
  "version": "0.35.0",
  "description": "A library for rapid generative AI application prototyping",
  "main": "./dist/src/index.js",
  "exports": {
    ".": "./dist/src/index.js",
    "./legacy.js": "./dist/src/legacy/index.js"
  },
  "types": "dist/src/index.d.ts",
  "type": "module",
  "scripts": {
    "prepack": "npm run build",
    "test": "wireit",
    "test:node": "wireit",
    "build": "wireit",
    "build:tsc": "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",
        "tests/bgl/*.bgl.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/**/*.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/breadboard",
    "type": "git",
    "url": "git+https://github.com/breadboard-ai/breadboard.git"
  },
  "files": [
    "dist/src",
    "dist/*.js",
    "dist/*.js.map"
  ],
  "ava": {
    "timeout": "30s",
    "files": [
      "tests/**/*.ts",
      "!tests/type-checks.ts",
      "!tests/node/**/*.ts",
      "!tests/inspector/inline-data-*.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/tree/main/packages/breadboard#readme",
  "devDependencies": {
    "@ava/typescript": "6.0.0",
    "@google-labs/tsconfig": "^0.0.2",
    "@types/node": "^22.0.0",
    "ava": "6.4.0",
    "jsonschema": "^1.5.0",
    "typescript": "^5.8.3"
  },
  "engines": {
    "node": ">=20.14.0"
  },
  "dependencies": {
    "@breadboard-ai/data": "0.0.2",
    "@breadboard-ai/jsandbox": "0.7.0",
    "@breadboard-ai/loader": "0.0.2",
    "@breadboard-ai/runtime": "0.1.0",
    "@breadboard-ai/types": "0.8.0",
    "@breadboard-ai/utils": "0.0.2",
    "@google-labs/breadboard-schema": "^1.15.0",
    "json-schema": "^0.4.0",
    "signal-utils": "^0.21.1"
  }
}
