{
  "name": "@cowprotocol/sdk-trading",
  "version": "2.0.5",
  "description": "CowProtocol trading",
  "repository": {
    "type": "git",
    "url": "https://github.com/cowprotocol/cow-sdk.git",
    "directory": "packages/trading"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "license": "MIT",
  "files": [
    "dist/**"
  ],
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@ethersproject/constants": "^5.7.0",
    "@types/jest": "^29.5.12",
    "@types/node": "^20.17.31",
    "coveralls": "^3.1.1",
    "ts-node": "^10.8.2",
    "tsup": "^7.2.0",
    "typescript": "^5.2.2",
    "jest": "^29.7.0",
    "jest-fetch-mock": "^3.0.3",
    "ethers-v5": "npm:ethers@^5.7.2",
    "ethers-v6": "npm:ethers@^6.13.7",
    "viem": "^2.28.4",
    "ts-jest": "^29.0.0",
    "tsx": "^4.19.4",
    "@cow-sdk/typescript-config": "0.0.0-beta.0",
    "@cowprotocol/sdk-ethers-v5-adapter": "0.4.6",
    "@cowprotocol/sdk-ethers-v6-adapter": "0.4.6",
    "@cowprotocol/sdk-viem-adapter": "0.3.20"
  },
  "dependencies": {
    "deepmerge": "^4.3.1",
    "@cowprotocol/sdk-config": "2.1.0",
    "@cowprotocol/sdk-app-data": "5.1.2",
    "@cowprotocol/sdk-common": "0.10.3",
    "@cowprotocol/sdk-order-book": "3.1.0",
    "@cowprotocol/sdk-order-signing": "1.0.3",
    "@cowprotocol/sdk-contracts-ts": "3.0.3"
  },
  "scripts": {
    "build": "tsup src/index.ts --format esm,cjs --dts",
    "lint": "eslint src/**/*.ts",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage --json --outputFile=jest.results.json && npx coveralls < ./coverage/lcov.info",
    "test:coverage:html": "jest --silent=false --coverage --coverageReporters html",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
  }
}