{
  "name": "@naviprotocol/lending",
  "version": "2.0.9",
  "description": "NAVI Lending SDK",
  "license": "MIT",
  "type": "module",
  "keywords": [
    "navi",
    "lending",
    "sui"
  ],
  "author": "NAVI",
  "homepage": "https://sdk.naviprotocol.io/lending",
  "bugs": "https://github.com/naviprotocol/naviprotocol-monorepo/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/naviprotocol/naviprotocol-monorepo.git"
  },
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "source": "src/index.ts",
  "files": [
    "dist",
    "README.md"
  ],
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=22"
  },
  "dependencies": {
    "bignumber.js": "9.1.2",
    "lodash.camelcase": "4.3.0"
  },
  "devDependencies": {
    "@mysten/sui": "2.20.2",
    "@types/lodash.camelcase": "4.3.9",
    "@types/node": "22.7.5",
    "tsconfig-paths": "4.2.0",
    "tslint": "6.1.3",
    "typescript": "5.8.3",
    "vitest": "3.2.4"
  },
  "peerDependencies": {
    "@mysten/sui": ">=2.0.0"
  },
  "scripts": {
    "build": "run-p build:lib",
    "build:lib": "vite build",
    "prettier": "prettier --check src/",
    "prettier:fix": "prettier --write src/",
    "lint": "eslint . --ext .ts,.tsx",
    "lint:fix": "eslint . --ext .ts,.tsx --fix",
    "verify": "run-p prettier lint",
    "verify:fix": "run-p prettier:fix lint:fix",
    "test": "vitest --config ./vite.config.unit.js",
    "test:types": "pnpm build:lib && tsc --noEmit -p tsconfig.type-tests.json",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage"
  }
}