{
  "name": "iotex-node-sdk",
  "version": "0.2.3",
  "description": "Comprehensive npm package for querying the IoTeX blockchain via native gRPC protocol with account management, HD wallet support, and full TypeScript types.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "tsc",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:integration": "jest test/integration.test.ts",
    "lint": "eslint src/**/*.ts",
    "format": "prettier --write \"src/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\"",
    "example:quick-start": "ts-node examples/quick-start.ts",
    "example:balance": "ts-node examples/get-balance.ts",
    "example:delegates": "ts-node examples/get-delegates.ts",
    "example:all-delegates": "ts-node examples/get-all-delegates.ts",
    "example:delegates-by-epoch": "ts-node examples/get-delegates-by-epoch.ts",
    "example:account": "ts-node examples/create-account.ts",
    "example:hdwallet": "ts-node examples/hdwallet.ts",
    "example:blockchain": "ts-node examples/blockchain-info.ts",
    "example:account-buckets": "ts-node examples/account-with-buckets.ts",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "keywords": [
    "iotex",
    "blockchain",
    "grpc",
    "cryptocurrency",
    "web3"
  ],
  "author": "IoTeXLab Delegate",
  "license": "MIT",
  "dependencies": {
    "@grpc/grpc-js": "^1.12.0",
    "@grpc/proto-loader": "^0.7.13",
    "@iotexproject/iotex-address-ts": "^1.0.2",
    "bip39": "^3.1.0",
    "ethers": "^6.13.0",
    "google-protobuf": "^3.21.4",
    "hdkey": "^2.1.0"
  },
  "devDependencies": {
    "@types/hdkey": "^2.1.0",
    "@types/jest": "^29.5.0",
    "@types/node": "^22.0.0",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "eslint": "^9.0.0",
    "jest": "^29.7.0",
    "prettier": "^3.3.0",
    "ts-jest": "^29.1.0",
    "ts-node": "^10.9.0",
    "ts-proto": "^2.2.0",
    "typescript": "^5.6.0"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
