{
  "name": "@morpho-org/blue-sdk",
  "description": "Framework-agnostic package that defines Morpho-related entity classes (such as `Market`, `Token`, `Vault`).",
  "version": "5.22.1",
  "author": "Morpho Association <contact@morpho.org>",
  "contributors": [
    "Rubilmax <rmilon@gmail.com>"
  ],
  "repository": "github:morpho-org/sdks",
  "homepage": "https://github.com/morpho-org/sdks",
  "bugs": {
    "url": "https://github.com/morpho-org/sdks/issues",
    "email": "contact@morpho.org"
  },
  "license": "MIT",
  "type": "module",
  "main": "src/index.ts",
  "files": [
    "lib"
  ],
  "dependencies": {
    "@noble/hashes": "^1.6.1",
    "@types/lodash.isplainobject": "^4.0.9",
    "@types/lodash.mergewith": "^4.6.9",
    "lodash.isplainobject": "^4.0.6",
    "lodash.mergewith": "^4.6.2"
  },
  "peerDependencies": {
    "@morpho-org/morpho-ts": "^2.5.1"
  },
  "devDependencies": {
    "typescript": "^5.9.3",
    "viem": "^2.41.2",
    "vitest": "^4.1.4",
    "@morpho-org/morpho-ts": "^2.5.1",
    "@morpho-org/test": "^2.7.1"
  },
  "scripts": {
    "prepublish": "$npm_execpath build",
    "build": "tsc --noEmit && $npm_execpath build:cjs && $npm_execpath build:esm",
    "build:cjs": "tsc --build tsconfig.build.cjs.json && echo '{\"type\":\"commonjs\"}' > lib/cjs/package.json",
    "build:esm": "tsc --build tsconfig.build.esm.json && echo '{\"type\":\"module\"}' > lib/esm/package.json",
    "test": "vitest"
  },
  "exports": {
    ".": {
      "types": "./lib/esm/index.d.ts",
      "import": "./lib/esm/index.js",
      "require": "./lib/cjs/index.js"
    }
  }
}