{
  "name": "agentic-mesh",
  "version": "0.2.0",
  "description": "Agentic Mesh",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "bin": {
    "agentic-mesh": "./dist/cli.js",
    "git-remote-mesh": "./dist/git-remote-mesh.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup src/index.ts src/cli.ts src/git/git-remote-mesh.ts --format cjs,esm --dts",
    "dev": "tsup src/index.ts src/cli.ts src/git/git-remote-mesh.ts --format cjs,esm --dts --watch",
    "lint": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "demo": "tsx examples/basic-sync.ts",
    "version:patch": "npm version patch && git push && git push --tags",
    "version:minor": "npm version minor && git push && git push --tags",
    "version:major": "npm version major && git push && git push --tags",
    "prepublishOnly": "npm run build",
    "publish:npm": "npm publish"
  },
  "keywords": [],
  "author": "Alex Ngai",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alexngai/agentic-mesh.git"
  },
  "bugs": {
    "url": "https://github.com/alexngai/agentic-mesh/issues"
  },
  "homepage": "https://github.com/alexngai/agentic-mesh#readme",
  "devDependencies": {
    "@types/node": "^25.0.3",
    "@types/picomatch": "^4.0.2",
    "ts-node": "^10.9.2",
    "tsup": "^8.0.0",
    "tsx": "^4.21.0",
    "typescript": "^5.0.0",
    "vitest": "^4.0.16"
  },
  "dependencies": {
    "@agentclientprotocol/sdk": "^0.12.0",
    "@msgpack/msgpack": "^3.1.3",
    "@types/better-sqlite3": "^7.6.13",
    "@types/ws": "^8.18.1",
    "better-sqlite3": "^12.5.0",
    "commander": "^14.0.2",
    "lib0": "^0.2.117",
    "picomatch": "^4.0.3",
    "ws": "^8.19.0",
    "y-protocols": "^1.0.7",
    "yjs": "^13.6.29"
  }
}
