{
  "name": "@project-serum/sol-wallet-adapter",
  "version": "0.2.6",
  "description": "Library to allow Solana dApps to use third-party wallets to sign transactions",
  "license": "Apache-2.0",
  "repository": "project-serum/sol-wallet-adapter",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "engines": {
    "node": ">=10"
  },
  "scripts": {
    "build": "rm -rf dist && tsc -P tsconfig.build.json && tsc -P tsconfig.esm.json",
    "start": "tsc --watch",
    "clean": "rm -rf dist",
    "prepare": "run-s clean build",
    "test": "run-s test:unit test:lint test:build",
    "test:build": "run-s build",
    "test:lint": "cd example && yarn install && cd .. && eslint .",
    "test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
    "test:watch": "react-scripts test --env=jsdom",
    "predeploy": "cd example && yarn install && yarn run build",
    "deploy": "gh-pages -d example/build"
  },
  "peerDependencies": {
    "@solana/web3.js": "^1.5.0"
  },
  "devDependencies": {
    "@solana/web3.js": "^1.29.2",
    "@types/bs58": "^4.0.1",
    "@types/jest": "^26.0.23",
    "@typescript-eslint/eslint-plugin": "^4.28.1",
    "@typescript-eslint/parser": "^4.28.1",
    "cross-env": "^7.0.3",
    "eslint": "^7.29.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-import": "^2.23.4",
    "eslint-plugin-prettier": "^3.4.0",
    "gh-pages": "^3.2.3",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.3.2",
    "react-scripts": "^4.0.3",
    "typescript": "^4.3.4"
  },
  "files": [
    "src/",
    "dist/"
  ],
  "dependencies": {
    "bs58": "^4.0.1",
    "eventemitter3": "^4.0.7"
  }
}
