{
  "name": "@morpho-org/simulation-sdk",
  "description": "Framework-agnostic package that defines methods to simulate interactions on Morpho (such as `Supply`, `Borrow`) and Morpho Vaults (such as `Deposit`, `Withdraw`).",
  "version": "4.0.3",
  "author": "Morpho Association <contact@morpho.org>",
  "contributors": [
    "Rubilmax <rmilon@gmail.com>"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/morpho-org/sdks.git",
    "directory": "packages/simulation-sdk"
  },
  "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": [
    "DEPRECATION.md",
    "lib"
  ],
  "dependencies": {
    "mutative": "^1.3.0"
  },
  "peerDependencies": {
    "@morpho-org/blue-sdk": "^6.0.0",
    "@morpho-org/morpho-ts": "^2.5.1"
  },
  "devDependencies": {
    "@types/lodash": "^4.17.24",
    "lodash": "^4.18.1",
    "typescript": "^6.0.3",
    "viem": "^2.50.4",
    "vitest": "^4.1.7",
    "@morpho-org/blue-sdk": "^6.1.0",
    "@morpho-org/morpho-test": "^4.0.1",
    "@morpho-org/morpho-ts": "^2.6.0",
    "@morpho-org/test": "^2.8.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"
  },
  "exports": {
    ".": {
      "types": "./lib/esm/index.d.ts",
      "import": "./lib/esm/index.js",
      "require": "./lib/cjs/index.js"
    }
  }
}