{
  "name": "@desk-exchange/typescript-sdk",
  "version": "1.0.5",
  "description": "Typescript SDK for DESK Exchange API",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "desk",
    "desk-exchange",
    "api",
    "sdk",
    "rest",
    "websocket",
    "trading",
    "crypto",
    "blockchain",
    "base",
    "dex",
    "perp",
    "perpetual"
  ],
  "author": "DESK",
  "license": "MIT",
  "dependencies": {
    "@msgpack/msgpack": "^3.0.0-beta2",
    "axios": "^1.7.2",
    "ethers": "^6.13.2",
    "ws": "^8.18.0"
  },
  "devDependencies": {
    "@types/node": "^20.17.16",
    "@types/ws": "^8.5.11",
    "dotenv": "^16.4.5",
    "rimraf": "^5.0.0",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.3",
    "tsup": "^8.3.5",
    "tsx": "^4.19.2"
  },
  "directories": {
    "test": "tests"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:HMXOrg/desk-typescript-sdk.git"
  },
  "engines": {
    "node": ">=18.17.0"
  },
  "scripts": {
    "build": "tsup src/index.ts --format esm,cjs --dts --clean",
    "build:watch": "tsc --watch",
    "clean": "rimraf dist",
    "test": "echo \"Error: no test specified\" && exit 1"
  }
}