{
  "name": "@phaisan/usedapp",
  "version": "1.1.11",
  "repository": "git@github.com:EthWorks/useDApp.git",
  "author": "Ethworks",
  "license": "MIT",
  "sideEffects": false,
  "main": "dist/cjs/src/index.js",
  "module": "dist/esm/src/index.js",
  "types": "dist/esm/src/index.d.ts",
  "files": [
    "dist",
    "src",
    "bin"
  ],
  "bin": {
    "usedapp-generate-hooks": "./bin/usedapp-generate-hooks.js"
  },
  "dependencies": {
    "@metamask/detect-provider": "^1.2.0",
    "@uniswap/token-lists": "^1.0.0-beta.27",
    "fetch-mock": "^9.11.0",
    "lodash.merge": "^4.6.2",
    "lodash.pickby": "^4.6.0",
    "nanoid": "3.3.4"
  },
  "peerDependencies": {
    "ethers": "*",
    "react": "*"
  },
  "devDependencies": {
    "@ethersproject/abi": "5.6.1",
    "@ethersproject/abstract-provider": "^5.6.1",
    "@ethersproject/providers": "5.6.2",
    "@swc-node/register": "^1.4.2",
    "@testing-library/react-hooks": "^5.0.3",
    "@types/chai": "^4.2.14",
    "@types/chai-as-promised": "^7.1.3",
    "@types/lodash": "^4.14.170",
    "@types/lodash.merge": "^4.6.6",
    "@types/lodash.pickby": "^4.6.6",
    "@types/mocha": "^8.2.0",
    "@types/node": "^17.0.21",
    "@types/react": "17.0.1",
    "@typescript-eslint/eslint-plugin": "^4.10.0",
    "@typescript-eslint/parser": "^4.10.0",
    "chai": "^4.2.0",
    "chai-as-promised": "^7.1.1",
    "eslint": "7.22.0",
    "eslint-plugin-react-hooks": "^4.3.0",
    "ethereum-waffle": "4.0.0-alpha.27",
    "ethers": "^5.6.8",
    "jsdom": "^16.4.0",
    "jsdom-global": "^3.0.2",
    "mocha": "^8.2.1",
    "mock-local-storage": "^1.1.17",
    "prettier": "^2.1.2",
    "react": "17.0.1",
    "solc": "^0.8.12",
    "ts-node": "^10.7.0",
    "typechain": "^7.0.0",
    "typescript": "^4.6.2",
    "wait-for-expect": "^3.0.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "yarn run build:esm && yarn run build:cjs && yarn build:cli",
    "build:esm": "tsc --module es2020 --target es2017 --outDir dist/esm",
    "build:cjs": "tsc --outDir dist/cjs",
    "build:cli": "tsc ./generate-hooks/generate-hooks.ts --outDir bin && chmod +x bin/*",
    "test": "TS_NODE_PROJECT=./tsconfig.test.json mocha",
    "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}'"
  }
}