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

     1  {
     2    "name": "@eth-optimism/fee-estimation",
     3    "version": "0.15.3",
     4    "description": "Lightweight library 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/fee-estimation"
    10    },
    11    "homepage": "https://optimism.io",
    12    "type": "module",
    13    "main": "dist/estimateFees.cjs",
    14    "module": "dist/estimateFees.js",
    15    "exports": {
    16      ".": {
    17        "import": "./dist/estimateFees.js",
    18        "require": "./dist/estimateFees.cjs",
    19        "default": "./dist/estimateFees.js",
    20        "types": "./src/estimateFees.ts"
    21      }
    22    },
    23    "types": "src/estimateFees.ts",
    24    "files": [
    25      "dist/",
    26      "src/"
    27    ],
    28    "scripts": {
    29      "build": "tsup",
    30      "lint": "prettier --check .",
    31      "lint:fix": "prettier --write .",
    32      "test": "vitest",
    33      "test:coverage": "vitest run --coverage",
    34      "typecheck": "tsc --noEmit"
    35    },
    36    "devDependencies": {
    37      "@eth-optimism/contracts-ts": "workspace:^",
    38      "@testing-library/jest-dom": "^6.4.2",
    39      "@testing-library/react-hooks": "^8.0.1",
    40      "@vitest/coverage-istanbul": "^1.2.2",
    41      "abitype": "^1.0.2",
    42      "isomorphic-fetch": "^3.0.0",
    43      "jest-dom": "link:@types/@testing-library/jest-dom",
    44      "jsdom": "^24.0.0",
    45      "tsup": "^8.0.1",
    46      "typescript": "^5.3.3",
    47      "viem": "^2.7.19",
    48      "vite": "^5.1.5",
    49      "vitest": "^1.2.2"
    50    },
    51    "peerDependencies": {
    52      "viem": "^0.3.30"
    53    }
    54  }