{
  "name": "@ostium/builder-sdk",
  "version": "0.8.0",
  "description": "Ostium builder SDK",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "CHANGELOG.md",
    "README.md",
    "builder-service.png",
    "dist",
    "llms.txt"
  ],
  "bin": {
    "ostium": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run typecheck && npm run build",
    "cli": "bun src/cli.ts",
    "test:unit": "npm run build && node --test test/account-updates.unit.test.mjs",
    "test:e2e:testnet": "npm run build && node --test test/trading-testnet.e2e.test.mjs",
    "test:local": "bun ./local/test.ts",
    "test:market-order": "bun ./local/market-order-min-builder-fee.ts",
    "test:builder-stats": "bun ./local/builder-order-stats.ts",
    "test:reads": "bun scripts/test-reads.ts",
    "test:builder-fee": "bun scripts/test-builder-fee.ts",
    "test:preview": "npm run build && node --test test/preview.unit.test.mjs",
    "test:errors": "bun test test/gasless-errors.test.ts",
    "verify": "bun scripts/verify.ts"
  },
  "publishConfig": {
    "access": "public"
  },
  "peerDependencies": {
    "viem": ">=2.21.0"
  },
  "dependencies": {
    "@clack/prompts": "^0.10.0",
    "@ostium/formulae": "1.6.3",
    "dotenv": "^16.0.0",
    "graphql-request": "^7.2.0",
    "permissionless": "^0.2.45",
    "picocolors": "^1.1.0",
    "tslib": "^2.8.1",
    "ws": "^8.20.0"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@types/ws": "^8.18.1",
    "tsup": "^8.0.0",
    "typescript": "^5.6.0",
    "viem": "^2.21.0"
  }
}
