{
  "name": "@origintrail-official/dkg-adapter-openclaw",
  "version": "10.0.13",
  "description": "OpenClaw plugin adapter for connecting a DKG V10 node and chat bridge to an OpenClaw agent",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "openclaw-entry.mjs",
    "setup-entry.mjs",
    "openclaw.plugin.json",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@origintrail-official/dkg-core": "10.0.13"
  },
  "openclaw": {
    "extensions": [
      "./openclaw-entry.mjs"
    ],
    "setupEntry": "./setup-entry.mjs",
    "channel": {
      "id": "dkg-ui",
      "label": "DKG UI",
      "detailLabel": "DKG Node UI Bridge",
      "blurb": "Connect the DKG node UI to a local OpenClaw agent.",
      "selectionExtras": [
        "DKG-backed chat persistence",
        "Node-served skill discovery"
      ],
      "markdownCapable": true
    }
  },
  "devDependencies": {
    "@vitest/coverage-v8": "^4.0.18",
    "vitest": "^4.0.18"
  },
  "publishConfig": {
    "access": "public"
  },
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/OriginTrail/dkg.git",
    "directory": "packages/adapter-openclaw"
  },
  "scripts": {
    "build": "pnpm clean && tsc",
    "test": "vitest run --passWithNoTests",
    "test:coverage": "vitest run --coverage --passWithNoTests",
    "clean": "node -e \"const fs=require('fs'); for (const p of ['dist','tsconfig.tsbuildinfo']) fs.rmSync(p,{recursive:true,force:true});\""
  }
}