{
  "name": "@uniswap/router-sdk",
  "version": "2.9.0",
  "description": "An sdk for routing swaps using Uniswap v2 and Uniswap v3.",
  "repository": "https://github.com/Uniswap/sdks.git",
  "keywords": [
    "uniswap",
    "ethereum"
  ],
  "license": "MIT",
  "main": "./dist/cjs/src/index.js",
  "typings": "./dist/types/src/index.d.ts",
  "module": "./dist/esm/src/index.js",
  "exports": {
    ".": {
      "types": "./dist/types/src/index.d.ts",
      "import": "./dist/esm/src/index.js",
      "require": "./dist/cjs/src/index.js"
    }
  },
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "bun run clean && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && tsc -p tsconfig.types.json",
    "clean": "rm -rf dist",
    "lint": "eslint 'src/**/*.{js,ts,tsx}' --max-warnings 0",
    "release": "changeset publish",
    "test": "bun test"
  },
  "dependencies": {
    "@ethersproject/abi": "^5.5.0",
    "@ethersproject/solidity": "^5.0.9",
    "@uniswap/sdk-core": "^7.13.0",
    "@uniswap/swap-router-contracts": "^1.3.0",
    "@uniswap/v2-sdk": "^4.20.0",
    "@uniswap/v3-sdk": "^3.30.0",
    "@uniswap/v4-sdk": "^2.0.0",
    "jsbi": "^3.1.4",
    "tiny-invariant": "^1.1.0",
    "tslib": "^2.3.0"
  },
  "devDependencies": {
    "@ethersproject/bignumber": "^5.5.0",
    "@typescript-eslint/parser": "^5.0.0",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-config-react-app": "7.0.1",
    "eslint-plugin-prettier": "^3.4.1",
    "prettier": "^2.4.1",
    "typescript": "^4.3.3"
  },
  "prettier": {
    "printWidth": 120,
    "semi": false,
    "singleQuote": true
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  }
}
