{
  "name": "@parabolfi/server",
  "version": "1.3.10",
  "license": "MIT",
  "private": false,
  "description": "Server utilities for Parabol SDK",
  "repository": {
    "type": "git",
    "url": "https://github.com/Parabol-Finance/sdks"
  },
  "bugs": {
    "url": "https://github.com/Parabol-Finance/sdks/issues"
  },
  "homepage": "https://parabol.fi/",
  "author": {
    "name": "Parabol Labs Ltd",
    "email": "dev@parabol.fi",
    "url": "https://parabol.fi"
  },
  "maintainers": [
    {
      "name": "Berkay Ermis",
      "email": "berkay@parabol.fi"
    },
    {
      "name": "Yusuf Benli",
      "email": "yusuf@parabol.fi"
    }
  ],
  "type": "module",
  "files": [
    "dist/**/*.js",
    "dist/**/*.d.ts"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "dependencies": {
    "axios": "^1.7.9",
    "big.js": "^6.2.2",
    "date-fns": "^4.1.0",
    "date-fns-tz": "^3.2.0",
    "viem": "^2.21.51",
    "@parabolfi/core": "1.4.7"
  },
  "engines": {
    "node": ">=18"
  },
  "keywords": [
    "parabol",
    "sdk",
    "ethereum",
    "defi",
    "stablecoin",
    "yield",
    "lending",
    "borrowing",
    "tbill",
    "fixed-rate",
    "earn",
    "blockchain",
    "finance",
    "web3",
    "rwa",
    "nft",
    "reserve-stability-pool",
    "rsp",
    "stability-pool",
    "parabolusd",
    "parausd",
    "note",
    "position"
  ],
  "devDependencies": {
    "@types/big.js": "^6.2.2",
    "dotenv": "^16.4.5"
  },
  "scripts": {
    "build": "rm -rf dist && pnpm run build:js && pnpm run build:types",
    "build:types": "tsc --emitDeclarationOnly --declarationMap",
    "build:js": "tsup",
    "dev": "tsup src/index.ts --format esm --watch",
    "test": "jest",
    "lint": "eslint . --ext .ts",
    "typecheck": "tsc --noEmit"
  }
}