{
  "name": "@nixiangyu/smart-order-router",
  "version": "2.6.6",
  "description": "Uniswap Smart Order Router",
  "main": "build/main/src/index.js",
  "typings": "build/main/src/index.d.ts",
  "module": "build/module/src/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/Uniswap/smart-order-router.git"
  },
  "license": "GPL",
  "keywords": [],
  "scripts": {
    "compile-v3-types": "npx typechain --target ethers-v5 --out-dir src/types/v3 './node_modules/@uniswap/?(v3-core|v3-periphery)/artifacts/contracts/**/*.json'",
    "compile-v2-types": "npx typechain --target ethers-v5 --out-dir src/types/v2 './node_modules/@uniswap/?(v2-core|v2-periphery)/build/*UniswapV2*.json'",
    "compile-router": "npx typechain --target ethers-v5 --out-dir src/types/other './node_modules/@uniswap/swap-router-contracts/artifacts/contracts/SwapRouter02.sol/SwapRouter02.json'",
    "compile-external-types": "npx typechain --target ethers-v5 --out-dir src/types/other 'src/abis/**/*.json'",
    "build": "run-p compile-v3-types compile-v2-types compile-router compile-external-types && run-p build:*",
    "build:main": "tsc -p tsconfig.json",
    "build:module": "tsc -p tsconfig.module.json",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "fix:lint": "eslint src --ext .ts --fix",
    "version": "standard-version",
    "prepare-release": "run-s cov:check doc:html version doc:publish",
    "test": "jest",
    "integ-test": "jest test/integ"
  },
  "engines": {
    "node": ">=10"
  },
  "dependencies": {
    "@bitauth/libauth": "^1.17.1",
    "@ethersproject/bignumber": "^5.1.1",
    "@oclif/command": "^1.8.0",
    "@oclif/errors": "^1.3.5",
    "@types/async-retry": "^1.4.2",
    "@types/await-timeout": "^0.3.1",
    "@types/bunyan": "^1.8.6",
    "@types/bunyan-blackhole": "^0.2.2",
    "@types/lodash": "^4.14.168",
    "@types/sinon": "^10.0.2",
    "@types/stats-lite": "^2.2.0",
    "@nixiangyu/default-token-list": "3.0.0",
    "@nixiangyu/router-sdk": "1.0.6",
    "@uniswap/swap-router-contracts": "1.1.0",
    "@uniswap/token-lists": "^1.0.0-beta.25",
    "@uniswap/v2-core": "^1.0.1",
    "@uniswap/v2-periphery": "^1.1.0-beta.0",
    "@nixiangyu/v2-sdk": "3.0.2",
    "@uniswap/v3-periphery": "^1.1.1",
    "@nixiangyu/v3-sdk": "4.0.7",
    "async-retry": "^1.3.1",
    "await-timeout": "^1.1.1",
    "axios": "^0.21.1",
    "bunyan": "^1.8.15",
    "bunyan-blackhole": "^1.1.1",
    "bunyan-debug-stream": "^2.0.0",
    "cli-logger": "^0.5.40",
    "dotenv": "^10.0.0",
    "ethereum-types": "^3.5.0",
    "ethers": "^5.1.4",
    "graphql": "^15.5.0",
    "graphql-request": "^3.4.0",
    "lodash": "^4.17.21",
    "mnemonist": "^0.38.3",
    "node-cache": "^5.1.2",
    "stats-lite": "^2.2.0",
    "tslib": "^1.14.1"
  },
  "devDependencies": {
    "@istanbuljs/nyc-config-typescript": "^1.0.1",
    "@typechain/ethers-v5": "^7.0.1",
    "@types/jest": "^26.0.24",
    "@types/jest-sinon": "^1.0.2",
    "@types/node": "^15.0.2",
    "@typescript-eslint/eslint-plugin": "^4.0.1",
    "@typescript-eslint/parser": "^4.0.1",
    "eslint": "^7.8.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-import": "^2.22.0",
    "jest": "^27.0.6",
    "jest-expect-message": "^1.0.2",
    "jest-mock": "^27.0.6",
    "jest-sinon": "^1.0.4",
    "npm-run-all": "^4.1.5",
    "open-cli": "^6.0.1",
    "prettier": "^2.1.1",
    "prettier-plugin-organize-imports": "^2.1.0",
    "sinon": "^11.1.2",
    "standard-version": "^9.0.0",
    "ts-jest": "^27.0.4",
    "ts-node": "^9.0.0",
    "typechain": "^5.0.0",
    "typescript": "^4.2.2"
  },
  "files": [
    "build/main",
    "build/module",
    "!**/*.spec.*",
    "!**/*.json",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "prettier": {
    "singleQuote": true
  },
  "oclif": {
    "commands": "./cli/commands"
  }
}
