{
  "name": "@solana-payment/sdk",
  "version": "1.0.1",
  "description": "TypeScript SDK for Solana Payment Contract - Build unsigned transactions for frontend",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "idl"
  ],
  "scripts": {
    "build": "tsc",
    "build:examples": "tsc -p tsconfig.examples.json",
    "clean": "rm -rf dist examples-dist",
    "prepublishOnly": "pnpm run clean && pnpm run build",
    "watch": "tsc --watch",
    "example:deposit": "pnpm build && pnpm build:examples && node examples-dist/deposit.js"
  },
  "keywords": [
    "solana",
    "spl-token",
    "vault",
    "payment",
    "sdk",
    "typescript"
  ],
  "author": "andreinnguyen <andreinnguyen@gmail.com>",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@coral-xyz/anchor": "^0.29.0",
    "@solana/spl-token": "^0.4.0",
    "@solana/web3.js": "^1.87.0",
    "buffer": "^6.0.3",
    "rpc-websockets": "7.5.1"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "ts-node": "^10.9.2",
    "typescript": "^5.0.0"
  },
  "engines": {
    "node": ">=16"
  }
}
