{
  "name": "@usedapp/uniswap",
  "version": "0.3.24",
  "main": "dist/cjs/src/index.js",
  "module": "dist/esm/src/index.js",
  "types": "dist/esm/src/index.d.ts",
  "repository": "git@github.com:EthWorks/useDApp.git",
  "author": "Ethworks",
  "license": "MIT",
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {},
  "peerDependencies": {
    "ethers": "^5",
    "react": "*",
    "@usedapp/core": "*"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^4.10.0",
    "@typescript-eslint/parser": "^4.10.0",
    "@usedapp/core": "1.2.4",
    "react": "17.0.1",
    "eslint": "7.22.0",
    "prettier": "2.1.2",
    "ts-node": "^10.7.0",
    "mocha": "^8.2.1",
    "ethereum-waffle": "4.0.0-alpha.27",
    "typescript": "^4.6.2",
    "chai": "^4.2.0",
    "chai-as-promised": "^7.1.1",
    "@types/chai-as-promised": "^7.1.3",
    "@usedapp/testing": "1.1.10",
    "@types/react": "17.0.1",
    "@types/mocha": "^8.2.0"
  },
  "scripts": {
    "build": "yarn run build:esm && yarn run build:cjs",
    "build:esm": "tsc --module es2020 --target es2017 --outDir dist/esm",
    "build:cjs": "tsc --outDir dist/cjs",
    "lint": "yarn lint:prettier --check && yarn lint:eslint",
    "lint:fix": "yarn lint:prettier --write && yarn lint:eslint --fix",
    "lint:eslint": "eslint './{src,test}/**/*.{ts,tsx}'",
    "lint:prettier": "yarn prettier './{src,test}/**/*.{ts,tsx}'",
    "test": "mocha"
  }
}