{
  "name": "@pit-protocol/sdk",
  "version": "0.0.1",
  "description": "TypeScript SDK for the PIT Protocol - prediction market on Solana",
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "dependencies": {
    "@coral-xyz/anchor": "^0.32.1",
    "@solana/spl-token": "^0.4.14",
    "@solana/web3.js": ">=1.90.0",
    "bs58": "^6.0.0"
  },
  "devDependencies": {
    "@types/bn.js": "^5.2.0",
    "@types/node": "^20.0.0",
    "tsx": "^4.21.0",
    "typescript": "^5.7.3"
  },
  "peerDependencies": {
    "@coral-xyz/anchor": "^0.32.1",
    "@solana/web3.js": ">=1.90.0"
  },
  "engines": {
    "node": ">=24.0.0",
    "pnpm": ">=9.0.0"
  },
  "keywords": [
    "solana",
    "anchor",
    "prediction-market",
    "lmsr",
    "defi",
    "pyth",
    "keeper"
  ],
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/xitadel/pit-mvp"
  },
  "scripts": {
    "build": "pnpm run generate:types && pnpm run generate:inline && tsc",
    "clean": "rm -rf dist",
    "dev": "tsc --watch",
    "lint": "eslint src --ext .ts",
    "test": "jest",
    "generate:types": "test -f ../target/idl/pit.json && (cp ../target/idl/pit.json src/idl/pit.json && anchor idl type ../target/idl/pit.json -o src/idl/pit.ts) || echo 'ℹ️  Skipping IDL generation (using existing types)'",
    "generate:inline": "node scripts/inline-idl.cjs"
  }
}