{
  "name": "web3w",
  "version": "0.3.2-beta.26",
  "description": "Observable Store for Web3 Browser with ethers contracts integration",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/esm/index.d.ts",
  "files": [
    "dist/",
    "src/"
  ],
  "author": "Ronan Sandford",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/wighawag/web3w.git"
  },
  "keywords": [
    "web3",
    "wallet",
    "ethereum",
    "ethers.js"
  ],
  "peerDependencies": {
    "@ethersproject/abi": "^5.0.0",
    "@ethersproject/bignumber": "^5.0.0",
    "@ethersproject/contracts": "^5.0.0",
    "@ethersproject/providers": "^5.0.0"
  },
  "devDependencies": {
    "@changesets/cli": "^2.17.0",
    "@ethersproject/abi": "^5.4.1",
    "@ethersproject/bignumber": "^5.4.2",
    "@ethersproject/contracts": "^5.4.1",
    "@ethersproject/providers": "^5.4.5",
    "@types/node": "^15.3.0",
    "@typescript-eslint/eslint-plugin": "^4.24.0",
    "@typescript-eslint/parser": "^4.24.0",
    "eslint": "^7.7.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^3.1.4",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.4.1",
    "rimraf": "^3.0.2",
    "terser": "^5.9.0",
    "terser-folder": "^2.0.0",
    "typescript": "4.2.4"
  },
  "scripts": {
    "prepare": "node .setup.cjs && npm run lint && npm run build",
    "dev": "tsc -w -p tsconfig.json",
    "build:esm": "rimraf dist/esm && tsc -p tsconfig.json",
    "build:cjs": "rimraf dist/cjs && tsc -p tsconfig-cjs.json",
    "build": "run-s build:esm build:cjs",
    "lint": "eslint src/**/*.{js,ts,tsx} --quiet --fix"
  },
  "dependencies": {
    "named-logs": "^0.1.0"
  }
}
