{
  "name": "@augustdigital/sdk",
  "version": "4.27.0",
  "main": "lib/index.js",
  "keywords": [
    "augustdigital",
    "sdk",
    "js",
    "institutional",
    "defi"
  ],
  "author": "August Digital",
  "license": "MIT",
  "description": "JS SDK powering the August Digital ecosystem.",
  "lint-staged": {
    "*.{ts,tsx,js,jsx,json}": [
      "eslint --fix"
    ],
    "*.{md,html,yaml}": [
      "prettier --write"
    ]
  },
  "files": [
    "lib"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@coral-xyz/anchor": "^0.31.1",
    "@sentry/browser": "^8.0.0",
    "@solana/spl-token": "^0.4.14",
    "@solana/wallet-adapter-base": "^0.9.27",
    "@solana/web3.js": "^1.98.4",
    "@stellar/stellar-sdk": "^14.6.1",
    "abitype": "^1.2.3",
    "buffer": "^6.0.3",
    "ethereum-block-by-date": "^1.5.0",
    "ethers": "^6.13.1",
    "lru-cache": "^11.2.2",
    "uuid": "^11.1.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "cross-env": "^7.0.3",
    "dotenv": "^16.0.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.0"
  },
  "peerDependencies": {
    "viem": "^2.0.0"
  },
  "peerDependenciesMeta": {
    "viem": {
      "optional": true
    }
  },
  "scripts": {
    "build": "tsc",
    "test": "pnpm build && cross-env node dist/test",
    "test:jest": "jest",
    "test:jest:watch": "jest --watch",
    "test:jest:coverage": "jest --coverage",
    "clean": "rm -rf ./lib",
    "format": "eslint . --fix",
    "lint-sdk": "lint-staged",
    "benchmark": "node benchmarks/run.js",
    "benchmark:ci": "node benchmarks/run.js --json benchmarks/results.json --md benchmarks/summary.md"
  }
}