{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@ethernauta/eth",
  "version": "0.0.48",
  "description": "eth_* JSON-RPC methods + EIP-1559 fee math + gas-limit buffering for Ethernauta.",
  "keywords": [
    "ethereum",
    "json-rpc",
    "eth",
    "eip-1559",
    "gas",
    "fees"
  ],
  "homepage": "https://ethernauta-docs.pages.dev/",
  "bugs": {
    "url": "https://github.com/niconiahi/ethernauta/issues"
  },
  "license": "MIT",
  "type": "module",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/niconiahi/ethernauta"
  },
  "sideEffects": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "src"
  ],
  "peerDependencies": {
    "valibot": "^1.1.0"
  },
  "dependencies": {
    "@ethernauta/abi": "0.0.48",
    "@ethernauta/chain": "0.0.48",
    "@ethernauta/core": "0.0.48",
    "@ethernauta/eip": "0.0.48",
    "@ethernauta/transport": "0.0.48",
    "@ethernauta/utils": "0.0.48"
  },
  "devDependencies": {
    "bun": "^1.2.20",
    "tsdown": "^0.13.3",
    "@ethernauta/testing": "0.0.48"
  },
  "scripts": {
    "dev": "tsdown --watch",
    "build": "tsdown",
    "lint": "biome check .",
    "lint:fix": "biome check --write --unsafe .",
    "format": "biome format --write .",
    "typecheck": "tsc --noEmit",
    "test:unit": "vitest",
    "test:integration": "echo no integration tests",
    "test:cli": "bun src/compiler/cli.ts --abi src/erc/165/IERC165.abi.json --out src/erc/165"
  }
}