{
  "name": "@metamask/json-rpc-engine",
  "version": "8.0.2",
  "description": "A tool for processing JSON-RPC messages",
  "keywords": [
    "MetaMask",
    "Ethereum"
  ],
  "homepage": "https://github.com/MetaMask/core/tree/main/packages/json-rpc-engine#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": "./dist/index.mjs",
      "require": "./dist/index.js",
      "types": "./dist/types/index.d.ts"
    },
    "./package.json": "./package.json"
  },
  "main": "./dist/index.js",
  "types": "./dist/types/index.d.ts",
  "directories": {
    "test": "test"
  },
  "files": [
    "dist/"
  ],
  "scripts": {
    "build": "tsup --config ../../tsup.config.ts --tsconfig ./tsconfig.build.json --clean",
    "build:docs": "typedoc",
    "changelog:update": "../../scripts/update-changelog.sh @metamask/json-rpc-engine --tag-prefix-before-package-rename json-rpc-engine@ --version-before-package-rename 6.1.0",
    "changelog:validate": "../../scripts/validate-changelog.sh @metamask/json-rpc-engine --tag-prefix-before-package-rename json-rpc-engine@ --version-before-package-rename 6.1.0",
    "lint": "yarn lint:eslint && yarn lint:misc --check && yarn lint:dependencies && yarn lint:changelog",
    "lint:changelog": "auto-changelog validate",
    "lint:dependencies": "depcheck",
    "lint:eslint": "eslint . --cache --ext js,ts",
    "lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write && yarn lint:dependencies && yarn lint:changelog",
    "lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' '**/*.yml' '!.yarnrc.yml' --ignore-path .gitignore --no-error-on-unmatched-pattern",
    "publish:preview": "yarn npm publish --tag preview",
    "test": "jest --reporters=jest-silent-reporter",
    "test:clean": "jest --clearCache",
    "test:verbose": "jest --verbose",
    "test:watch": "jest --watch"
  },
  "dependencies": {
    "@metamask/rpc-errors": "^6.2.1",
    "@metamask/safe-event-emitter": "^3.0.0",
    "@metamask/utils": "^8.3.0"
  },
  "devDependencies": {
    "@lavamoat/allow-scripts": "^3.0.2",
    "@metamask/auto-changelog": "^3.4.4",
    "@types/jest": "^27.4.1",
    "deepmerge": "^4.2.2",
    "jest": "^27.5.1",
    "jest-it-up": "^2.0.2",
    "ts-jest": "^27.1.4",
    "typedoc": "^0.24.8",
    "typescript": "~4.9.5"
  },
  "packageManager": "yarn@3.3.0",
  "engines": {
    "node": ">=16.0.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "lavamoat": {
    "allowScripts": {
      "@lavamoat/preinstall-always-fail": false
    }
  }
}