{
  "name": "@imtbl/dex-sdk",
  "description": "DEX Provider package for the Immutable SDK",
  "version": "2.17.1",
  "author": "Immutable",
  "bugs": "https://github.com/immutable/ts-immutable-sdk/issues",
  "dependencies": {
    "@imtbl/config": "2.17.1",
    "@uniswap/sdk-core": "^3.0.1",
    "@uniswap/swap-router-contracts": "^1.3.1",
    "@uniswap/v3-sdk": "^3.9.0",
    "ethers": "^6.13.4"
  },
  "devDependencies": {
    "@swc/core": "^1.4.2",
    "@swc/jest": "^0.2.37",
    "@typechain/ethers-v6": "^0.5.1",
    "@types/jest": "^29.5.12",
    "@types/node": "^22.10.7",
    "eslint": "^8.56.0",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.4.3",
    "ts-node": "^10.9.1",
    "tsup": "^8.3.0",
    "typechain": "^8.1.1",
    "typescript": "^5.6.2"
  },
  "engines": {
    "node": ">=20.11.0"
  },
  "exports": {
    "development": {
      "types": "./src/index.ts",
      "browser": "./dist/browser/index.js",
      "require": "./dist/node/index.cjs",
      "default": "./dist/node/index.js"
    },
    "default": {
      "types": "./dist/types/index.d.ts",
      "browser": "./dist/browser/index.js",
      "require": "./dist/node/index.cjs",
      "default": "./dist/node/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "homepage": "https://github.com/immutable/ts-immutable-sdk#readme",
  "keywords": [
    "immutablex"
  ],
  "license": "Apache-2.0",
  "main": "dist/node/index.cjs",
  "module": "dist/node/index.js",
  "browser": "dist/browser/index.js",
  "publishConfig": {
    "access": "public"
  },
  "repository": "immutable/ts-immutable-sdk.git",
  "source": "src/index.ts",
  "type": "module",
  "types": "./dist/types/index.d.ts",
  "scripts": {
    "build": "pnpm transpile && pnpm typegen",
    "transpile": "tsup src/index.ts --config ../../../../tsup.config.js",
    "typegen": "tsc --customConditions default --emitDeclarationOnly --outDir dist/types",
    "pack:root": "pnpm pack --pack-destination $(dirname $(pnpm root -w))",
    "generate-types": "typechain --target ethers-v6 --out-dir ./src/contracts/types ./src/contracts/ABIs/*.json",
    "lint": "eslint ./src --ext .ts --max-warnings=0",
    "lint:fix": "cd ../../../.. && pnpm wsrun -p @imtbl/dex-sdk -c lint --fix",
    "test": "jest test",
    "test:watch": "jest --watch",
    "typecheck": "tsc --customConditions default --noEmit"
  }
}