{
    "name": "@simplecrypto/relay-provider",
    "version": "0.0.1",
    "description": "An provider for interacting with Relay infrastructure",
    "author": "Sam Hatem <sam.hatem17@gmail.com>",
    "main": "lib/index.js",
    "module": "lib.esm/index.js",
    "types": "lib/index.d.ts",
    "engines": {
        "node": ">=8",
        "npm": ">=5"
    },
    "contributors": [
        {
            "name": "Sam Hatem",
            "url": "https://github.com/samhatem"
        }
    ],
    "dependencies": {
        "@ethersproject/abi": "^5.7.0",
        "@ethersproject/abstract-provider": "^5.7.0",
        "@ethersproject/address": "^5.7.0",
        "@ethersproject/bignumber": "^5.7.0",
        "@ethersproject/bytes": "^5.7.0",
        "@ethersproject/constants": "^5.7.0",
        "@ethersproject/hash": "^5.7.0",
        "@ethersproject/keccak256": "^5.7.0",
        "@ethersproject/providers": "^5.7.1",
        "axios": "^1.2.1",
        "axios-retry": "^3.3.1"
    },
    "devDependencies": {
        "@ethersproject/contracts": "^5.7.0",
        "@ethersproject/wallet": "^5.7.0",
        "@slide-web3/multi-endpoint-provider": "^0.0.1",
        "@types/jest": "^28.1.6",
        "dotenv": "^16.0.2",
        "eslint": "8.18.0",
        "eslint-config-airbnb-typescript-prettier": "^4.2.0",
        "install-peers-cli": "^2.2.0",
        "jest": "^29.3.1",
        "lint-staged": "^10.5.3",
        "npm-run-all": "^4.1.5",
        "prettier": "^2.7.1",
        "shx": "^0.3.3",
        "ts-jest": "^29.0.3",
        "typescript": "^4.9.3"
    },
    "keywords": [
        "typescript",
        "ethers"
    ],
    "license": "MIT",
    "scripts": {
        "prebuild": "yarn clean",
        "build:cjs": "tsc --project tsconfig.production.json",
        "build:esm": "tsc --project tsconfig.esm.json",
        "build": "run-p 'build:*'",
        "clean:cjs": "shx rm -rf ./lib",
        "clean:esm": "shx rm -rf ./lib.esm",
        "clean": "run-p 'clean:*'",
        "lint": "eslint --config ./.eslintrc.js --ignore-path ./.eslintignore src",
        "prepack": "yarn build",
        "test": "jest --testPathIgnorePatterns gsnV1Provider.test.ts gasLimit.test.ts specificRelayers.test.ts pastTx.test.ts acknowledgeTx.test.ts",
        "start:cjs": "tsc --project tsconfig.production.json -w",
        "start:esm": "tsc --project tsconfig.esm.json -w",
        "start": "run-p 'start:*'",
        "prepare": "install-peers"
    }
}
