{
  "name": "@uniswap/universal-router-sdk",
  "version": "5.1.0",
  "description": "sdk for integrating with the Universal Router contracts",
  "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",
    "docs": "typedoc",
    "forge:fix": "forge fmt",
    "lint": "bun run prettier",
    "lint:fix": "bun run prettier:fix && bun run forge:fix",
    "prettier": "prettier --check '**/*.ts' && prettier --check '**/*.json'",
    "prettier:fix": "prettier --write '**/*.ts' && prettier --write '**/*.json'",
    "release": "changeset publish",
    "test": "bun run test:hardhat && bun run test:forge",
    "test:forge": "forge test",
    "test:hardhat": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' hardhat test"
  },
  "dependencies": {
    "@ethersproject/abi": "^5.5.0",
    "@ethersproject/abstract-signer": "^5.7.0",
    "@openzeppelin/contracts": "4.7.0",
    "@uniswap/permit2-sdk": "^1.4.0",
    "@uniswap/router-sdk": "^2.9.0",
    "@uniswap/sdk-core": "^7.13.0",
    "@uniswap/universal-router": "2.1.0",
    "@uniswap/v2-core": "^1.0.1",
    "@uniswap/v2-sdk": "^4.20.0",
    "@uniswap/v3-core": "1.0.0",
    "@uniswap/v3-sdk": "^3.30.0",
    "@uniswap/v4-sdk": "^2.0.0",
    "bignumber.js": "^9.0.2",
    "ethers": "^5.7.0",
    "jsbi": "^3.1.4",
    "tiny-invariant": "^1.1.0",
    "tslib": "^2.3.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.25.0",
    "prettier": "^2.4.1",
    "ts-node": "^10.9.1",
    "typedoc": "^0.21.2",
    "typescript": "^4.3.3"
  },
  "prettier": {
    "printWidth": 120,
    "semi": false,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  }
}
