{
  "name": "@metamask/eth-json-rpc-provider",
  "version": "6.0.1",
  "description": "Create an Ethereum provider using a JSON-RPC engine or middleware",
  "keywords": [
    "MetaMask",
    "Ethereum"
  ],
  "homepage": "https://github.com/MetaMask/core/tree/main/packages/eth-json-rpc-provider#readme",
  "bugs": {
    "url": "https://github.com/MetaMask/core/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/MetaMask/core.git"
  },
  "license": "ISC",
  "sideEffects": false,
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.cts",
  "files": [
    "dist/"
  ],
  "scripts": {
    "build": "ts-bridge --project tsconfig.build.json --verbose --clean --no-references",
    "build:all": "ts-bridge --project tsconfig.build.json --verbose --clean",
    "build:docs": "typedoc",
    "changelog:update": "../../scripts/update-changelog.sh @metamask/eth-json-rpc-provider",
    "changelog:validate": "../../scripts/validate-changelog.sh @metamask/eth-json-rpc-provider",
    "lint": "yarn lint:eslint && yarn lint:misc --check && yarn lint:dependencies",
    "lint:dependencies": "depcheck",
    "lint:eslint": "eslint .  --ext js,ts",
    "lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write && yarn lint:dependencies",
    "lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' '**/*.yml' '!.yarnrc.yml' --ignore-path .gitignore --no-error-on-unmatched-pattern",
    "since-latest-release": "../../scripts/since-latest-release.sh",
    "test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=jest-silent-reporter",
    "test:clean": "NODE_OPTIONS=--experimental-vm-modules jest --clearCache",
    "test:verbose": "NODE_OPTIONS=--experimental-vm-modules jest --verbose",
    "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
  },
  "dependencies": {
    "@metamask/json-rpc-engine": "^10.2.4",
    "@metamask/rpc-errors": "^7.0.2",
    "@metamask/utils": "^11.9.0",
    "nanoid": "^3.3.8"
  },
  "devDependencies": {
    "@ethersproject/providers": "^5.7.0",
    "@metamask/auto-changelog": "^3.4.4",
    "@metamask/eth-query": "^4.0.0",
    "@metamask/ethjs-query": "^0.5.3",
    "@ts-bridge/cli": "^0.6.4",
    "@types/jest": "^29.5.14",
    "deepmerge": "^4.2.2",
    "ethers": "^6.12.0",
    "jest": "^29.7.0",
    "jest-it-up": "^2.0.2",
    "ts-jest": "^29.2.5",
    "typedoc": "^0.25.13",
    "typescript": "~5.3.3"
  },
  "engines": {
    "node": "^18.18 || >=20"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "lavamoat": {
    "allowScripts": {
      "@lavamoat/preinstall-always-fail": false
    }
  }
}