{
  "name": "@negotium/adapter-sdk",
  "version": "0.19.0",
  "type": "module",
  "description": "Shared lifecycle contract for Negotium channel adapters",
  "license": "Apache-2.0",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./outbox": {
      "types": "./dist/outbox.d.ts",
      "default": "./dist/outbox.js"
    },
    "./testkit": {
      "types": "./dist/testkit.d.ts",
      "default": "./dist/testkit.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "bun": ">=1.2.15"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/maestrojeong/negotium.git",
    "directory": "packages/adapter-sdk"
  },
  "homepage": "https://github.com/maestrojeong/negotium#readme",
  "bugs": {
    "url": "https://github.com/maestrojeong/negotium/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "bun ../../scripts/build-package.ts src/index.ts src/outbox.ts src/testkit.ts",
    "check": "bunx tsc --noEmit",
    "lint": "biome check",
    "test": "bun test",
    "prepack": "bun run build"
  },
  "devDependencies": {
    "@types/node": "^26.4.1",
    "bun-types": "^1.4.2",
    "typescript": "^5"
  }
}
