{
  "name": "@explorins/web3-ts",
  "version": "0.3.98",
  "description": "Enterprise TypeScript library for blockchain operations with Ethers.js and Web3.js support, transaction management, and smart contract interactions across multiple networks including Ethereum, Polygon, and PERS Besu private blockchains.",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/cjs/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/cjs/index.js",
      "import": "./dist/esm/index.js",
      "types": "./dist/cjs/index.d.ts"
    },
    "./ethers": {
      "require": "./dist/cjs/ethers-index.js",
      "import": "./dist/esm/ethers-index.js",
      "types": "./dist/cjs/ethers-index.d.ts"
    },
    "./types": {
      "require": "./dist/cjs/types-index.js",
      "import": "./dist/esm/types-index.js",
      "types": "./dist/cjs/types-index.d.ts"
    },
    "./utils/transaction": {
      "require": "./dist/cjs/utils/transaction.utils.js",
      "import": "./dist/esm/utils/transaction.utils.js",
      "types": "./dist/cjs/utils/transaction.utils.d.ts"
    },
    "./functions/connection": {
      "require": "./dist/cjs/functions/connection.functions.js",
      "import": "./dist/esm/functions/connection.functions.js",
      "types": "./dist/cjs/functions/connection.functions.d.ts"
    },
    "./helpers/chains": {
      "require": "./dist/cjs/helpers/chains.js",
      "import": "./dist/esm/helpers/chains.js",
      "types": "./dist/cjs/helpers/chains.d.ts"
    },
    "./functions/contract-ethers": {
      "require": "./dist/cjs/functions/contract.ethers.functions.js",
      "import": "./dist/esm/functions/contract.ethers.functions.js",
      "types": "./dist/cjs/functions/contract.ethers.functions.d.ts"
    },
    "./PERS-contracts/ethers": {
      "require": "./dist/cjs/PERS-contracts/functions/PERS_METHOD_BUILDER.ethers.functions.js",
      "import": "./dist/esm/PERS-contracts/functions/PERS_METHOD_BUILDER.ethers.functions.js",
      "types": "./dist/cjs/PERS-contracts/functions/PERS_METHOD_BUILDER.ethers.functions.d.ts"
    },
    "./PERS-contracts/read-ethers": {
      "require": "./dist/cjs/PERS-contracts/functions/readContract.PERS.ethers.functions.js",
      "import": "./dist/esm/PERS-contracts/functions/readContract.PERS.ethers.functions.js",
      "types": "./dist/cjs/PERS-contracts/functions/readContract.PERS.ethers.functions.d.ts"
    },
    "./PERS-contracts/write-ethers": {
      "require": "./dist/cjs/PERS-contracts/functions/writeContract.PERS.ethers.functions.js",
      "import": "./dist/esm/PERS-contracts/functions/writeContract.PERS.ethers.functions.js",
      "types": "./dist/cjs/PERS-contracts/functions/writeContract.PERS.ethers.functions.d.ts"
    }
  },
  "sideEffects": false,
  "files": [
    "package.json",
    "src/assets",
    "dist/*"
  ],
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:ci": "jest --ci --coverage --watchAll=false",
    "watch": "tsc -b --watch",
    "build": "tsc -b tsconfig.cjs.json tsconfig.esm.json",
    "postbuild": "node scripts/fix-esm-imports.js",
    "build:clean": "rimraf dist && npm run build",
    "prepublish": "npm run build",
    "publish:npm": "npm run build && npm publish",
    "dev": "npm run watch",
    "type-check": "tsc --noEmit",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write src/**/*.ts",
    "format:check": "prettier --check src/**/*.ts",
    "validate": "npm run type-check && npm run lint && npm run format:check",
    "precommit": "npm run validate && npm run build"
  },
  "license": "Private",
  "author": "eXplorins",
  "repository": {
    "type": "git",
    "url": "https://github.com/daniel-explorins/web3-library"
  },
  "keywords": [
    "web3",
    "blockchain",
    "ethereum",
    "polygon",
    "typescript",
    "smart-contracts",
    "transactions",
    "defi",
    "nft",
    "pers-besu",
    "private-blockchain",
    "eip-1559",
    "eip-2930",
    "wallet",
    "ethers",
    "enterprise"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "dependencies": {
    "@ethereumjs/common": "^10.0.0",
    "@ethereumjs/tx": "^10.0.0",
    "@ethereumjs/util": "^10.0.0",
    "@explorins/web3-types": "^1.1.1",
    "axios": "^1.6.8",
    "bignumber.js": "^9.1.2",
    "https": "^1.0.0"
  },
  "browser": {
    "https": false
  },
  "peerDependencies": {
    "ethers": "^6.0.0",
    "web3": "^4.0.0",
    "web3-eth-contract": "^4.0.0",
    "web3-types": "^1.0.0"
  },
  "peerDependenciesMeta": {
    "ethers": {
      "optional": false
    },
    "web3": {
      "optional": true
    },
    "web3-eth-contract": {
      "optional": true
    },
    "web3-types": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@typescript-eslint/eslint-plugin": "^8.38.0",
    "@typescript-eslint/parser": "^8.38.0",
    "eslint": "^9.32.0",
    "ethers": "^6.15.0",
    "jest": "^29.7.0",
    "jest-extended": "^4.0.2",
    "prettier": "^3.6.2",
    "ts-jest": "^29.4.1",
    "typescript": "^5.2.2",
    "web3": "^4.16.0",
    "web3-eth-contract": "^4.7.2",
    "web3-types": "^1.10.0"
  }
}
