{
  "name": "@theqrl/web3",
  "version": "1.0.0",
  "publishConfig": {
    "access": "public"
  },
  "description": "QRL JavaScript API",
  "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"
  },
  "engines": {
    "node": ">=20"
  },
  "author": "The QRL Contributors",
  "browser": "./dist/web3.min.js",
  "license": "LGPL-3.0",
  "keywords": [
    "QRL",
    "JavaScript",
    "API"
  ],
  "files": [
    "lib/**/*",
    "src/**/*",
    "dist/**/*"
  ],
  "devDependencies": {
    "@theqrl/eslint-config-base-web3": "1.0.0",
    "@theqrl/web3-providers-ipc": "1.0.0",
    "@types/jest": "29.5.0",
    "@typescript-eslint/eslint-plugin": "8.59.0",
    "@typescript-eslint/parser": "8.59.0",
    "eslint": "10.2.1",
    "eslint-config-prettier": "10.1.8",
    "hardhat": "2.22.0",
    "in3": "3.3.3",
    "jest": "29.7.0",
    "jest-extended": "7.0.0",
    "prettier": "3.8.3",
    "ts-jest": "29.1.0",
    "typescript": "5.9.3"
  },
  "dependencies": {
    "@theqrl/web3-core": "1.0.0",
    "@theqrl/web3-errors": "1.0.0",
    "@theqrl/web3-net": "1.0.0",
    "@theqrl/web3-providers-http": "1.0.0",
    "@theqrl/web3-providers-ws": "1.0.0",
    "@theqrl/web3-qrl": "1.0.0",
    "@theqrl/web3-qrl-abi": "1.0.0",
    "@theqrl/web3-qrl-accounts": "1.0.0",
    "@theqrl/web3-qrl-contract": "1.0.0",
    "@theqrl/web3-qrl-iban": "1.0.0",
    "@theqrl/web3-qrl-qrns": "1.0.0",
    "@theqrl/web3-rpc-methods": "1.0.0",
    "@theqrl/web3-types": "1.0.0",
    "@theqrl/web3-utils": "1.0.0",
    "@theqrl/web3-validator": "1.0.0"
  },
  "scripts": {
    "clean": "rimraf dist && rimraf lib",
    "prebuild": "pnpm run clean",
    "version:output": "[ -z $npm_package_version ] && rm ./src/version.ts || echo \"/* eslint-disable header/header */ export const Web3PkgInfo = { version: '$npm_package_version' };\" > ./src/version.ts",
    "build": "pnpm run version:output && 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:web": "pnpm exec webpack",
    "build:web:analyze": "pnpm exec webpack --config ./webpack.analyze.js",
    "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",
    "test:coverage:integration": "jest --config=./test/integration/jest.config.js --forceExit --coverage=true",
    "test:e2e:mainnet": "jest --config=./test/e2e/jest.config.js --forceExit",
    "test:e2e:testnet": "jest --config=./test/e2e/jest.config.js --forceExit",
    "test:sync:integration": "jest --config=./test/integration/jest.config.js ./test/integration/sync.test.ts",
    "test:ci": "jest --coverage=true --coverage-reporters=json --verbose",
    "test:watch": "pnpm run test -- --watch",
    "test:unit": "jest --config=./test/unit/jest.config.js",
    "test:integration": "jest --config=./test/integration/jest.config.js --forceExit",
    "test:blackbox:gqrl:http": "./scripts/black_box_test.sh gqrl http",
    "test:blackbox:gqrl:ws": "./scripts/black_box_test.sh gqrl ws"
  }
}