{
  "name": "@metamask/base-controller",
  "version": "8.0.0",
  "description": "Provides scaffolding for controllers as well a communication system for all controllers",
  "keywords": [
    "MetaMask",
    "Ethereum"
  ],
  "homepage": "https://github.com/MetaMask/core/tree/main/packages/base-controller#readme",
  "bugs": {
    "url": "https://github.com/MetaMask/core/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/MetaMask/core.git"
  },
  "license": "MIT",
  "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:docs": "typedoc",
    "changelog:update": "../../scripts/update-changelog.sh @metamask/base-controller",
    "changelog:validate": "../../scripts/validate-changelog.sh @metamask/base-controller",
    "publish:preview": "yarn npm publish --tag preview",
    "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/utils": "^11.1.0",
    "immer": "^9.0.6"
  },
  "devDependencies": {
    "@metamask/auto-changelog": "^3.4.4",
    "@metamask/json-rpc-engine": "^10.0.3",
    "@types/jest": "^27.4.1",
    "@types/sinon": "^9.0.10",
    "deepmerge": "^4.2.2",
    "jest": "^27.5.1",
    "sinon": "^9.2.4",
    "ts-jest": "^27.1.4",
    "typedoc": "^0.24.8",
    "typedoc-plugin-missing-exports": "^2.0.0",
    "typescript": "~5.2.2"
  },
  "engines": {
    "node": "^18.18 || >=20"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}