{
  "name": "@graphprotocol/sdk",
  "version": "0.6.1",
  "description": "TypeScript based SDK to interact with The Graph protocol contracts",
  "main": "types/index.js",
  "types": "types/index.d.ts",
  "exports": {
    ".": {
      "default": "./types/index.js",
      "types": "./types/index.d.ts"
    },
    "./gre": {
      "default": "./types/gre/index.js",
      "types": "./types/gre/index.d.ts"
    }
  },
  "repository": "git@github.com:graphprotocol/sdk.git",
  "author": "tomas@edgeandnode.com",
  "license": "MIT",
  "dependencies": {
    "@arbitrum/sdk": "~3.1.13",
    "@ethersproject/abstract-provider": "^5.8.0",
    "@ethersproject/experimental": "^5.7.0",
    "@ethersproject/providers": "^5.8.0",
    "@graphprotocol/common-ts": "^2.0.7",
    "@graphprotocol/contracts": "7.2.1",
    "@nomicfoundation/hardhat-network-helpers": "^1.0.9",
    "@nomiclabs/hardhat-ethers": "^2.2.3",
    "debug": "^4.3.4",
    "ethers": "^5.7.0",
    "hardhat": "^2.24.0",
    "hardhat-secure-accounts": "0.0.6",
    "inquirer": "^8.0.0",
    "lodash": "^4.17.21",
    "yaml": "^1.10.2"
  },
  "devDependencies": {
    "@eslint/js": "^9.28.0",
    "@types/chai": "^4.3.9",
    "@types/chai-as-promised": "^7.1.7",
    "@types/debug": "^4.1.10",
    "@types/inquirer": "^8.0.0",
    "@types/lodash": "^4.14.200",
    "@types/mocha": "^10.0.3",
    "@types/node": "^20.17.50",
    "@typescript-eslint/eslint-plugin": "^8.34.0",
    "@typescript-eslint/parser": "^8.34.0",
    "chai": "^4.3.10",
    "chai-as-promised": "^7.1.1",
    "eslint": "^9.28.0",
    "eslint-config-prettier": "^10.1.5",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-jsdoc": "^50.8.0",
    "eslint-plugin-no-only-tests": "^3.3.0",
    "eslint-plugin-simple-import-sort": "^12.1.1",
    "eslint-plugin-unused-imports": "^4.1.4",
    "globals": "16.1.0",
    "markdownlint-cli": "0.45.0",
    "mocha": "^11.6.0",
    "prettier": "^3.5.3",
    "ts-node": "^10.9.1",
    "typescript": "^5.8.3"
  },
  "files": [
    "types/*",
    "src/*",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "scripts": {
    "lint": "eslint '**/*.{js,ts,cjs,mjs,jsx,tsx}' --fix --cache; prettier -w --cache --log-level warn '**/*.{js,ts,cjs,mjs,jsx,tsx}'",
    "test:gre": "cd src/gre && mocha --exit --recursive 'test/**/*.test.ts' && cd ..",
    "clean": "rm -rf cache types",
    "build": "tsc",
    "build:clean": "pnpm clean && pnpm build"
  }
}