{
  "name": "eip1193-types",
  "version": "0.2.2",
  "description": "TypeScript definitions for EIP-1193 and MetaMask.",
  "license": "MIT",
  "homepage": "https://github.com/sxzz/eip1193-types#readme",
  "bugs": {
    "url": "https://github.com/sxzz/eip1193-types/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sxzz/eip1193-types.git"
  },
  "files": [
    "src"
  ],
  "types": "./src/index.ts",
  "exports": {
    "./package.json": "./package.json",
    "./global": "./src/global.d.ts",
    ".": "./src/index.ts"
  },
  "typesVersions": {
    "*": {
      "*": [
        "./src/*",
        "./*"
      ]
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@sxzz/eslint-config": "^4.5.0",
    "@sxzz/prettier-config": "^2.0.2",
    "@types/node": "^22.10.1",
    "eslint": "^9.15.0",
    "prettier": "^3.4.1",
    "typedoc": "^0.27.1",
    "typescript": "^5.7.2"
  },
  "engines": {
    "node": ">=14.19.0"
  },
  "prettier": "@sxzz/prettier-config",
  "scripts": {
    "lint": "eslint .",
    "lint:fix": "pnpm run lint --fix",
    "typecheck": "tsc --noEmit",
    "docs:build": "typedoc ./src/index.ts",
    "release": "bumpp && pnpm publish"
  }
}