{
  "name": "@theqrl/web3-types",
  "version": "1.0.1",
  "publishConfig": {
    "access": "public"
  },
  "description": "Provide the common data structures and interfaces for web3 modules.",
  "main": "./lib/commonjs/index.js",
  "module": "./lib/esm/index.js",
  "exports": {
    ".": {
      "types": "./lib/types/index.d.ts",
      "import": "./lib/esm/index.js",
      "require": "./lib/commonjs/index.js"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/theQRL/web3.js",
    "directory": "packages/web3-types"
  },
  "author": "The QRL Contributors",
  "license": "LGPL-3.0",
  "engines": {
    "node": ">=20"
  },
  "files": [
    "lib/**/*",
    "src/**/*"
  ],
  "devDependencies": {
    "@humeris/espresso-shot": "4.0.0",
    "@theqrl/eslint-config-base-web3": "1.0.1",
    "@types/jest": "30.0.0",
    "@typescript-eslint/eslint-plugin": "8.59.4",
    "@typescript-eslint/parser": "8.59.4",
    "eslint": "10.4.0",
    "eslint-config-prettier": "10.1.8",
    "jest": "30.4.2",
    "jest-extended": "7.0.0",
    "prettier": "3.8.3",
    "ts-jest": "29.4.11",
    "typescript": "6.0.3"
  },
  "scripts": {
    "clean": "rimraf dist && rimraf lib",
    "prebuild": "pnpm run clean",
    "build": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types",
    "build:cjs": "tsc --build tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > ./lib/commonjs/package.json",
    "build:esm": "tsc --build tsconfig.esm.json && echo '{\"type\": \"module\"}' > ./lib/esm/package.json",
    "build:types": "tsc --build tsconfig.types.json",
    "build:check": "node -e \"require('./lib')\"",
    "lint": "eslint .",
    "lint:fix": "eslint --fix .",
    "format": "prettier --write '**/*'",
    "test": "jest --config=./test/unit/jest.config.js",
    "test:coverage:unit": "jest --config=./test/unit/jest.config.js --coverage=true --passWithNoTests",
    "test:coverage:integration": "jest --config=./test/integration/jest.config.js --passWithNoTests --coverage=true",
    "test:ci": "jest --coverage=true --coverage-reporters=json --verbose",
    "test:watch": "pnpm run test -- --watch",
    "test:unit": "jest --config=./test/unit/jest.config.js --passWithNoTests",
    "test:integration": "jest --config=./test/integration/jest.config.js --passWithNoTests"
  }
}