{
  "name": "@maxime.julian/ethereum-multicall",
  "version": "3.0.0",
  "description": "Multicall allows multiple smart contract constant function calls to be grouped into a single call and the results aggregated into a single result",
  "main": "dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/esm/index.d.ts",
  "scripts": {
    "build": "npm run build:esm && npm run build:cjs",
    "build:esm": "tsc",
    "build:cjs": "tsc --module commonjs --outDir dist/cjs",
    "playground": "node ./dist/cjs/__TEST-SCRIPT__/playground.js",
    "watch": "tsc --module commonjs --outDir dist/cjs --watch",
    "test": "npm test",
    "gen-multicall-abi": "abi-types-generator ./src/ABI/multicall-abi.json --output=./src/ABI/types --name=multicall --provider=ethers",
    "prepublishOnly": "npm run build"
  },
  "author": "joshstevens19@hotmail.co.uk",
  "license": "ISC",
  "dependencies": {
    "@ethersproject/providers": "^5.0.10",
    "ethers": "^5.0.15"
  },
  "devDependencies": {
    "@types/node": "^14.11.2",
    "ethereum-abi-types-generator": "^1.0.6",
    "typescript": "^4.1.3"
  },
  "files": [
    "dist",
    "package.json",
    "package-lock.json",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "ethereum",
    "blockchain",
    "JSONRPC"
  ],
  "bugs": {
    "url": "https://github.com/joshstevens19/ethereum-multicall/issues"
  },
  "homepage": "https://github.com/joshstevens19/ethereum-multicall#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/therealemjy/ethereum-multicall.git"
  }
}
