{
  "name": "@calimero-network/calimero-sdk-js",
  "version": "0.3.1",
  "description": "Core SDK for building Calimero P2P applications",
  "main": "./lib/index.js",
  "module": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/index.js",
      "require": "./lib/index.js"
    },
    "./collections": {
      "types": "./lib/collections/index.d.ts",
      "import": "./lib/collections/index.js",
      "require": "./lib/collections/index.js"
    },
    "./env": {
      "types": "./lib/env/api.d.ts",
      "import": "./lib/env/api.js",
      "require": "./lib/env/api.js"
    },
    "./runtime/dispatcher": {
      "types": "./lib/runtime/dispatcher.d.ts",
      "import": "./lib/runtime/dispatcher.js",
      "require": "./lib/runtime/dispatcher.js"
    },
    "./borsh": {
      "types": "./lib/borsh/index.d.ts",
      "import": "./lib/borsh/index.js",
      "require": "./lib/borsh/index.js"
    }
  },
  "files": [
    "lib/**/*",
    "src/**/*",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "clean": "rm -rf lib",
    "test": "jest",
    "test:watch": "jest --watch",
    "prepublishOnly": "pnpm build"
  },
  "keywords": [
    "calimero",
    "sdk",
    "crdt",
    "p2p",
    "wasm",
    "distributed"
  ],
  "author": "Calimero Network",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/calimero-network/calimero-sdk-js.git",
    "directory": "packages/sdk"
  },
  "dependencies": {
    "@noble/hashes": "^1.7.1",
    "borsh": "^1.0.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.11",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.1",
    "typescript": "^5.3.3"
  }
}
