github.com/ethereum-optimism/optimism@v1.7.2/packages/web3js-plugin/package.json (about)

     1  {
     2    "name": "@eth-optimism/web3.js-plugin",
     3    "version": "0.1.3",
     4    "description": "A Web3.js plugin for doing OP-Chain gas estimation",
     5    "license": "MIT",
     6    "repository": {
     7      "type": "git",
     8      "url": "https://github.com/ethereum-optimism/optimism.git",
     9      "directory": "packages/web3js-plugin"
    10    },
    11    "homepage": "https://optimism.io",
    12    "type": "module",
    13    "exports": {
    14      ".": {
    15        "import": "./dist/plugin.js",
    16        "require": "./dist/plugin.cjs",
    17        "default": "./dist/plugin.js",
    18        "types": "./src/plugin.d.ts"
    19      }
    20    },
    21    "types": "dist/plugin.d.ts",
    22    "files": [
    23      "dist/",
    24      "src/"
    25    ],
    26    "scripts": {
    27      "build": "tsup",
    28      "lint": "prettier --check .",
    29      "lint:fix": "prettier --write .",
    30      "test": "vitest --coverage",
    31      "test:coverage": "vitest run --coverage",
    32      "typecheck": "tsc --noEmit"
    33    },
    34    "devDependencies": {
    35      "@eth-optimism/contracts-ts": "workspace:^",
    36      "@swc/core": "^1.4.6",
    37      "@vitest/coverage-istanbul": "^1.2.2",
    38      "tsup": "^8.0.1",
    39      "typescript": "^5.3.3",
    40      "viem": "^2.7.19",
    41      "vite": "^5.1.5",
    42      "vitest": "^1.2.2",
    43      "zod": "^3.22.4"
    44    },
    45    "dependencies": {
    46      "@ethereumjs/rlp": "^5.0.2",
    47      "web3-eth": "^4.0.3",
    48      "web3-eth-accounts": "^4.0.3"
    49    },
    50    "peerDependencies": {
    51      "web3": ">= 4.0.3 < 5.x"
    52    }
    53  }