{
  "name": "@uniswap/v3-sdk",
  "version": "3.30.0",
  "description": "⚒️ An SDK for building applications on top of 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/abstract-signer": "^5.7.0",
    "@ethersproject/address": "^5.0.2",
    "@ethersproject/solidity": "^5.0.9",
    "@uniswap/sdk-core": "^7.13.0",
    "@uniswap/swap-router-contracts": "^1.3.0",
    "@uniswap/v3-periphery": "^1.1.1",
    "@uniswap/v3-staker": "1.0.0",
    "jsbi": "^3.1.4",
    "tiny-invariant": "^1.1.0",
    "tiny-warning": "^1.0.3",
    "tslib": "^2.3.0"
  },
  "devDependencies": {
    "@typescript-eslint/parser": "^5.0.0",
    "@uniswap/v3-core": "1.0.0",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-config-react-app": "7.0.1",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-functional": "^3.0.2",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-prettier": "^3.4.1",
    "ethers": "^5.7.0",
    "prettier": "^2.4.1",
    "typescript": "^4.3.3"
  },
  "prettier": {
    "printWidth": 120,
    "semi": false,
    "singleQuote": true
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  }
}
