{
  "name": "@metamask/snaps-sdk",
  "version": "11.0.0",
  "description": "A library containing the core functionality for building MetaMask Snaps",
  "keywords": [
    "MetaMask",
    "Snaps",
    "Ethereum"
  ],
  "homepage": "https://github.com/MetaMask/snaps/tree/main/packages/snaps-sdk#readme",
  "bugs": {
    "url": "https://github.com/MetaMask/snaps/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/MetaMask/snaps.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"
      }
    },
    "./jsx": {
      "import": {
        "types": "./dist/jsx/index.d.mts",
        "default": "./dist/jsx/index.mjs"
      },
      "require": {
        "types": "./dist/jsx/index.d.cts",
        "default": "./dist/jsx/index.cjs"
      }
    },
    "./jsx-runtime": {
      "import": {
        "types": "./dist/jsx/jsx-runtime.d.mts",
        "default": "./dist/jsx/jsx-runtime.mjs"
      },
      "require": {
        "types": "./dist/jsx/jsx-runtime.d.cts",
        "default": "./dist/jsx/jsx-runtime.cjs"
      }
    },
    "./jsx-dev-runtime": {
      "import": {
        "types": "./dist/jsx/jsx-dev-runtime.d.mts",
        "default": "./dist/jsx/jsx-dev-runtime.mjs"
      },
      "require": {
        "types": "./dist/jsx/jsx-dev-runtime.d.cts",
        "default": "./dist/jsx/jsx-dev-runtime.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.cts",
  "files": [
    "dist",
    "jsx.js",
    "jsx-dev-runtime.js",
    "jsx-runtime.js",
    "jsx.d.ts",
    "jsx-dev-runtime.d.ts",
    "jsx-runtime.d.ts"
  ],
  "scripts": {
    "build": "ts-bridge --project tsconfig.build.json --verbose --clean --no-references",
    "build:docs": "typedoc",
    "changelog:update": "../../scripts/update-changelog.sh @metamask/snaps-sdk",
    "changelog:validate": "../../scripts/validate-changelog.sh @metamask/snaps-sdk",
    "lint": "yarn lint:eslint && yarn lint:misc --check && yarn changelog:validate && yarn lint:dependencies",
    "lint:ci": "yarn lint",
    "lint:dependencies": "depcheck",
    "lint:eslint": "eslint . --cache",
    "lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
    "lint:misc": "prettier --no-error-on-unmatched-pattern --log-level warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" --ignore-path ../../.gitignore",
    "publish:preview": "yarn npm publish --tag preview",
    "since-latest-release": "../../scripts/since-latest-release.sh",
    "test": "jest --reporters=jest-silent-reporter",
    "test:clean": "jest --clearCache",
    "test:post": "jest-it-up",
    "test:verbose": "jest --verbose",
    "test:watch": "jest --watch"
  },
  "dependencies": {
    "@metamask/key-tree": "^10.1.1",
    "@metamask/providers": "^22.1.1",
    "@metamask/rpc-errors": "^7.0.3",
    "@metamask/superstruct": "^3.2.1",
    "@metamask/utils": "^11.10.0",
    "luxon": "^3.5.0"
  },
  "devDependencies": {
    "@lavamoat/allow-scripts": "^3.4.3",
    "@metamask/auto-changelog": "^5.3.2",
    "@ts-bridge/cli": "^0.6.1",
    "@types/jest": "^27.5.1",
    "@types/luxon": "^3",
    "deepmerge": "^4.2.2",
    "depcheck": "^1.4.7",
    "eslint": "^9.11.0",
    "expect-type": "^0.17.3",
    "jest": "^29.0.2",
    "jest-fetch-mock": "^3.0.3",
    "jest-it-up": "^2.0.0",
    "jest-silent-reporter": "^0.6.0",
    "prettier": "^3.3.3",
    "ts-jest": "^29.1.1",
    "typedoc": "^0.28.16",
    "typedoc-theme-fresh": "^0.2.3",
    "typescript": "~5.3.3"
  },
  "engines": {
    "node": "^20 || >=22"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}