{
  "name": "@synthetixio/contracts-interface",
  "publishConfig": {
    "access": "public"
  },
  "version": "2.77.7",
  "description": "A library for interacting with Synthetix smart contracts",
  "source": "./src/index.ts",
  "main": "./build/index.js",
  "module": "./build/index.js",
  "browser": "./build/index.js",
  "types": "./build/index.d.ts",
  "files": [
    "build",
    "src"
  ],
  "scripts": {
    "build:ts": "tsc --build --verbose",
    "build": "yarn build:ts",
    "examples": "ts-node ./examples/index.js",
    "start": "webpack-cli serve",
    "lint": "eslint './src/**/*.{js,ts,tsx}'",
    "lint:fix": "eslint --fix './src/**/*.{js,ts,tsx}'",
    "test": "jest --coverage --no-cache"
  },
  "repository": "Synthetixio/js-monorepo",
  "author": "Synthetix",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Synthetixio/js-monorepo/issues"
  },
  "dependencies": {
    "@synthetixio/contracts": "1.2.5",
    "abi-decoder": "^2.4.0",
    "ethers": "^5.8.0",
    "synthetix": "^2.102.1"
  },
  "devDependencies": {
    "@babel/core": "^7.23.2",
    "@babel/plugin-transform-runtime": "^7.23.2",
    "@babel/preset-env": "^7.23.2",
    "@babel/preset-typescript": "^7.23.2",
    "@types/node": "^22.13.1",
    "eslint": "^8.34.0",
    "html-webpack-plugin": "^5.5.0",
    "jest": "^29.7.0",
    "ts-loader": "^9.5.2",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.3",
    "webpack": "^5.97.1",
    "webpack-cli": "^5.1.4",
    "webpack-dev-server": "^4.15.2"
  },
  "browserslist": [
    "last 1 Chrome version",
    "last 1 Firefox version",
    "last 1 Edge version",
    "last 1 Opera version"
  ],
  "jest": {
    "testMatch": [
      "<rootDir>/**/*.test.{js,jsx,ts,tsx}"
    ],
    "collectCoverageFrom": [
      "<rootDir>/src/**/*.{js,jsx,ts,tsx}",
      "!<rootDir>/src/**/*.d.{js,jsx,ts,tsx}"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 70,
        "functions": 70,
        "lines": 80,
        "statements": 80
      }
    }
  },
  "depcheck": {
    "ignoreMatches": [
      "abi-decoder",
      "webpack-dev-server"
    ]
  }
}