{
  "name": "@usedapp/coingecko",
  "version": "1.1.15",
  "main": "dist/cjs/src/index.js",
  "module": "dist/esm/src/index.js",
  "types": "dist/esm/src/index.d.ts",
  "repository": "git@github.com:TrueFiEng/useDApp.git",
  "author": "Ethworks",
  "license": "MIT",
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "src"
  ],
  "devDependencies": {
    "@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/isomorphic-fetch": "^0.0.36",
    "@types/mocha": "^8.2.0",
    "@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",
    "jsdom": "^16.7.0",
    "jsdom-global": "^3.0.2",
    "mocha": "^8.2.1",
    "prettier": "^2.1.2",
    "typescript": "^4.6.2",
    "react": "17.0.1"
  },
  "dependencies": {
    "@usedapp/core": "workspace:*",
    "isomorphic-fetch": "^3.0.0"
  },
  "peerDependencies": {
    "react": "*",
    "ethers": "*"
  },
  "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",
    "test": "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}'"
  }
}
