{
  "name": "@uniswap/universal-router-sdk",
  "description": "sdk for integrating with the Universal Router contracts",
  "repository": "https://github.com/Uniswap/sdks.git",
  "keywords": [
    "uniswap",
    "ethereum"
  ],
  "license": "MIT",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=14"
  },
  "scripts": {
    "build": "tsdx build",
    "docs": "typedoc",
    "forge:fix": "forge fmt",
    "lint": "yarn prettier",
    "lint:fix": "yarn prettier:fix && yarn forge:fix",
    "prettier": "prettier --check '**/*.ts' && prettier --check '**/*.json'",
    "prettier:fix": "prettier --write '**/*.ts' && prettier --write '**/*.json'",
    "release": "semantic-release",
    "test": "yarn test:hardhat && yarn test:forge",
    "test:forge": "forge test",
    "test:hardhat": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' hardhat test"
  },
  "dependencies": {
    "@openzeppelin/contracts": "4.7.0",
    "@uniswap/permit2-sdk": "^1.3.0",
    "@uniswap/router-sdk": "^2.0.2",
    "@uniswap/sdk-core": "^7.7.1",
    "@uniswap/universal-router": "2.0.0-beta.2",
    "@uniswap/v2-core": "^1.0.1",
    "@uniswap/v2-sdk": "^4.15.2",
    "@uniswap/v3-core": "1.0.0",
    "@uniswap/v3-sdk": "^3.25.2",
    "@uniswap/v4-sdk": "^1.21.2",
    "bignumber.js": "^9.0.2",
    "ethers": "^5.7.0"
  },
  "devDependencies": {
    "@types/chai": "^4.3.3",
    "@types/mocha": "^9.1.1",
    "@types/node": "^18.7.16",
    "@types/node-fetch": "^2.6.2",
    "chai": "^4.3.6",
    "dotenv": "^16.0.3",
    "eslint-plugin-prettier": "^3.4.1",
    "hardhat": "^2.22.15",
    "prettier": "^2.4.1",
    "ts-node": "^10.9.1",
    "tsdx": "^0.14.1",
    "tslib": "^2.3.0",
    "typedoc": "^0.21.2",
    "typescript": "^4.3.3"
  },
  "prettier": {
    "printWidth": 120,
    "semi": false,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "release": {
    "extends": "semantic-release-monorepo",
    "branches": [
      {
        "name": "main",
        "prerelease": false
      }
    ],
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "preset": "angular",
          "releaseRules": "../../publishing/release-rules.cjs"
        }
      ],
      "@semantic-release/release-notes-generator",
      "@semantic-release/npm",
      "@semantic-release/github",
      [
        "@semantic-release/exec",
        {
          "successCmd": "git restore yarn.lock && yarn",
          "failCmd": "git restore yarn.lock && yarn",
          "execCwd": "../.."
        }
      ]
    ]
  },
  "installConfig": {
    "hoistingLimits": "workspaces"
  },
  "sideEffects": false,
  "version": "4.19.5"
}
