{
  "name": "@pancakeswap/v2-sdk",
  "version": "1.2.0",
  "description": "An SDK for Pancakeswap V2",
  "repository": {
    "type": "git",
    "url": "https://github.com/pancakeswap/pancake-frontend.git",
    "directory": "packages/v2-sdk"
  },
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "dependencies": {
    "tiny-invariant": "^1.3.0",
    "viem": "2.37.13",
    "@pancakeswap/chains": "0.8.0",
    "@pancakeswap/swap-sdk-core": "1.6.0",
    "@pancakeswap/swap-sdk-evm": "1.2.0"
  },
  "devDependencies": {
    "tsup": "^6.7.0",
    "@pancakeswap/tsconfig": "0.0.0"
  },
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest --run",
    "test:u": "vitest --run -u",
    "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
    "typechecks": "tsc --noEmit -p ./tsconfig.json"
  }
}