{
  "name": "@pooltogether/walletlink",
  "version": "1.0.0-nextjs-9.2.0-fix",
  "description": "WalletLink JavaScript SDK - forked with fix for NextJS 9.2.0",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": "https://github.com/pooltogether/walletlink",
  "author": "Coinbase, Inc. - modified by Chuck Bergeron <chuck@pooltogether.com>",
  "license": "Apache-2.0",
  "scripts": {
    "tsc": "tsc --noEmit --pretty",
    "test": "jest",
    "test:watch": "jest --watch",
    "build": "webpack --config webpack.config.js",
    "build-chrome": "webpack --config webpack.config.chrome.js",
    "build-npm": "tsc -p ./tsconfig.build.json",
    "build:dev": "export WALLETLINK_URL='http://localhost:3000'; yarn build && yarn build-chrome",
    "build:dev:watch": "nodemon -e ts,tsx,js,json,css --watch src/ --watch chrome/ --exec 'yarn build:dev'",
    "build:prod": "yarn build && yarn build-chrome && yarn build-npm && cp ./package.json ../README.md ../LICENSE build/npm",
    "lint": "tslint -p . 'src/**/*.ts{,x}'",
    "lint:watch": "nodemon -e ts,tsx,js,json,css --watch src/ --exec 'yarn tsc && yarn lint'"
  },
  "dependencies": {
    "bind-decorator": "^1.0.11",
    "bn.js": "^5.0.0",
    "eth-eip712-util": "^2.3.0",
    "keccak": "^2.0.0"
  },
  "devDependencies": {
    "@types/bn.js": "^4.11.5",
    "@types/jest": "^24.0.18",
    "@types/node": "^12.7.8",
    "classlist-polyfill": "^1.2.0",
    "copy-webpack-plugin": "^5.0.4",
    "core-js": "^2.6.9",
    "jest": "^24.9.0",
    "nodemon": "^1.19.2",
    "raw-loader": "^3.1.0",
    "regenerator-runtime": "^0.13.3",
    "ts-jest": "^24.1.0",
    "ts-loader": "^6.1.2",
    "tslib": "^1.10.0",
    "tslint": "^5.20.0",
    "tslint-config-prettier": "^1.18.0",
    "tslint-config-security": "^1.16.0",
    "tslint-microsoft-contrib": "^6.2.0",
    "typescript": "^3.6.3",
    "webpack": "^4.41.0",
    "webpack-cli": "^3.3.9",
    "whatwg-fetch": "^3.0.0"
  },
  "engines": {
    "node": ">= 10.0.0"
  },
  "jest": {
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testEnvironment": "node",
    "testPathIgnorePatterns": [
      "<rootDir>/dist/",
      "<rootDir>/node_modules/"
    ],
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "ts",
      "js",
      "json"
    ]
  }
}