{
  "name": "@opensip-cli/contracts",
  "version": "0.8.5",
  "license": "Apache-2.0",
  "description": "Public Tool↔runner contracts and shared host-run runtime for OpenSIP CLI",
  "keywords": [
    "opensip-cli",
    "static-analysis",
    "code-quality",
    "types",
    "contracts"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/opensip-ai/opensip-cli.git",
    "directory": "packages/contracts"
  },
  "homepage": "https://github.com/opensip-ai/opensip-cli",
  "bugs": {
    "url": "https://github.com/opensip-ai/opensip-cli/issues"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": "./dist/index.js"
  },
  "files": [
    "dist",
    "LICENSE",
    "NOTICE"
  ],
  "dependencies": {
    "zod": "^4.4.3",
    "@opensip-cli/core": "0.8.5"
  },
  "peerDependencies": {
    "commander": "^14.0.0 || ^15.0.0"
  },
  "peerDependenciesMeta": {
    "commander": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "^24.13.3",
    "commander": "^15.0.0",
    "typescript": "~6.0.3",
    "vitest": "^4.1.10"
  },
  "scripts": {
    "build": "tsc",
    "test": "vitest run --passWithNoTests",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}