{
  "name": "multi-asset-transfer",
  "version": "0.2.2",
  "description": "A tool to build a transaction to transfer multiple assets in a single transaction from CSV.",
  "author": {
    "name": "bh2smith"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/bh2smith/multi-asset-transfer.git"
  },
  "homepage": "https://github.com/bh2smith/multi-asset-transfer",
  "bugs": {
    "url": "https://github.com/bh2smith/multi-asset-transfer/issues"
  },
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/cjs/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "type": "module",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "bun clean && bun build:esm && bun build:cjs",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "clean": "rm -rf dist",
    "lint": "prettier --check '{src,tests}/**/*.ts'",
    "fmt": "prettier --write '{src,tests}/**/*.ts'"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/jest": "^30.0.0",
    "@types/papaparse": "^5.3.16",
    "prettier": "^3.6.2"
  },
  "peerDependencies": {
    "typescript": "^5.9.2"
  },
  "dependencies": {
    "papaparse": "^5.5.3",
    "viem": "^2.37.8"
  }
}
