{
  "name": "behavior-contracts",
  "version": "0.11.19",
  "description": "Language-agnostic runtime core for behavior contracts (dsl-contracts): validateEnvelope / evaluateExpression / renderTemplate / runPlan / canonical serialization. Single source of truth for the shared DSL runtime primitives.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "bc": "dist/cli.js"
  },
  "files": [
    "dist",
    "cli-contract.yaml",
    "README.md",
    "LICENSE"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./runtime": {
      "types": "./dist/runtime.d.ts",
      "import": "./dist/runtime.js"
    }
  },
  "scripts": {
    "build": "tsc -p tsconfig.json && node scripts/fix-dts-extensions.mjs",
    "clean": "rm -rf dist",
    "cli:generate": "cli-contracts generate",
    "test": "node --disable-warning=ExperimentalWarning --test \"test/*.test.ts\"",
    "conformance": "node --disable-warning=ExperimentalWarning --test \"test/conformance.test.ts\"",
    "typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.test.json",
    "verify": "bash ../scripts/verify.sh"
  },
  "specVersions": {
    "expression": 2,
    "template": 1,
    "plan": 1,
    "canonical": 2,
    "behavior": 6,
    "guard": 4,
    "c2": 1,
    "provenance": 1,
    "envelope": "1.1"
  },
  "keywords": [
    "dsl-contracts",
    "behavior-contracts",
    "runtime",
    "ir",
    "expression",
    "canonical",
    "conformance"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/foo-ogawa/behavior-contracts.git",
    "directory": "ts"
  },
  "homepage": "https://github.com/foo-ogawa/behavior-contracts/tree/main/ts#readme",
  "bugs": {
    "url": "https://github.com/foo-ogawa/behavior-contracts/issues"
  },
  "devDependencies": {
    "@types/node": "^22.20.1",
    "cli-contracts": "^0.34.1",
    "typescript": "^6.0.0"
  },
  "engines": {
    "node": ">=22"
  },
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "sideEffects": false,
  "dependencies": {
    "commander": "^14.0.3"
  },
  "peerDependencies": {
    "typescript": ">=5.0.0"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  }
}
