{
  "name": "quickswap-sdk-lite",
  "version": "1.0.5",
  "description": "A simple easy to understand SDK built for quickswap on Polygon mainnet (Unofficial)",
  "main": "dist/index.js",
  "scripts": {
    "test": "jest",
    "gen-erc20-abi": "abi-types-generator ./src/ABI/erc-20-abi.json --output=./src/ABI/types --name=erc20-contract --provider=ethers_v5",
    "gen-quickswap-router-abi": "abi-types-generator ./src/ABI/quickswap-router.json --output=./src/ABI/types --name=quickswap-router --provider=ethers_v5",
    "gen-quickswap-factory-abi": "abi-types-generator ./src/ABI/quickswap-factory.json --output=./src/ABI/types --name=quickswap-factory --provider=ethers_v5",
    "gen-quickswap-pair-abi": "abi-types-generator ./src/ABI/quickswap-pair.json --output=./src/ABI/types --name=quickswap-pair --provider=ethers_v5",
    "gen-all-contract-types": "npm run gen-erc20-abi && npm run gen-quickswap-router-abi && npm run gen-quickswap-factory-abi && npm run gen-quickswap-pair-abi",
    "prepublishOnly": "tsc"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/michaelessiet/quickswap-sdk.git"
  },
  "authors": "",
  "license": "ISC",
  "keywords": [
    "ethereum",
    "blockchain",
    "quickswap"
  ],
  "bugs": {
    "url": "https://github.com/michaelessiet/quickswap-sdk/issues"
  },
  "homepage": "https://github.com/michaelessiet/quickswap-sdk#readme",
  "dependencies": {
    "bignumber.js": "^9.0.1",
    "ethereum-multicall": "^2.15.0",
    "ethers": "^5.0.26",
    "rxjs": "^6.6.3"
  },
  "devDependencies": {
    "@types/jest": "^26.0.20",
    "ethereum-abi-types-generator": "^1.0.10",
    "jest": "^24.9.0",
    "ts-jest": "^24.1.0",
    "typescript": "^4.1.3"
  },
  "files": [
    "dist",
    "package.json",
    "package-lock.json",
    "README.md",
    "LICENSE"
  ]
}
