{
  "name": "@baize-ai/core",
  "version": "0.3.1",
  "type": "module",
  "description": "Baize (白泽) — autonomous AI agent infrastructure",
  "main": "cli/baize.js",
  "bin": {
    "baize": "./cli/baize.js"
  },
  "scripts": {
    "postinstall": "node scripts/postinstall.js || true",
    "pretest": "node scripts/install-skill-deps.js",
    "test": "npm run test:jest && npm run test:node",
    "test:jest": "node --experimental-vm-modules node_modules/.bin/jest",
    "test:node": "node scripts/run-node-tests.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/baize-ai/baize-core.git"
  },
  "keywords": [
    "ai",
    "agent",
    "claude",
    "autonomous"
  ],
  "author": "Baize AI",
  "license": "MIT",
  "engines": {
    "node": ">=20.20.0"
  },
  "dependencies": {
    "dotenv": "^16.4.7",
    "js-yaml": "^4.3.1",
    "smol-toml": "^1.6.1"
  },
  "devDependencies": {
    "@jest/globals": "^30.2.0",
    "jest": "^30.3.0"
  },
  "overrides": {
    "@istanbuljs/load-nyc-config": {
      "js-yaml": "^3.15.1"
    }
  },
  "publishConfig": {
    "access": "public"
  }
}