{
  "name": "@tastytrade/api",
  "version": "7.0.2",
  "type": "module",
  "module": "dist/tastytrade-api.js",
  "types": "dist/tastytrade-api.d.ts",
  "exports": {
    "types": "./dist/tastytrade-api.d.ts",
    "default": "./dist/tastytrade-api.js"
  },
  "repository": "https://github.com/tastytrade/tastytrade-api-js",
  "license": "MIT",
  "description": "Typescript impelementation of tastytrade api",
  "engines": {
    "npm": ">=9.0.0",
    "node": ">=20.0.0"
  },
  "prettier": {
    "semi": false,
    "singleQuote": true,
    "trailingComma": "none"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "test": "jest -i --restoreMocks",
    "unit-test": "node --experimental-vm-modules ./node_modules/.bin/jest tests/unit",
    "integration-test": "node --experimental-vm-modules ./node_modules/.bin/jest tests/integration",
    "lint": "eslint lib/** tests/**",
    "format": "prettier --write .",
    "prepublishOnly": "npm run unit-test && npm run build",
    "postpack": "git tag -a $npm_package_version -m $npm_package_version && git push origin $npm_package_version"
  },
  "dependencies": {
    "@dxfeed/dxlink-api": "^0.3.0",
    "@types/lodash": "^4.17.16",
    "@types/qs": "^6.9.18",
    "axios": "^1.9.0",
    "isomorphic-ws": "^5.0.0",
    "lodash": "^4.18.1",
    "qs": "^6.14.0",
    "uuid": "^11.1.0",
    "ws": "^8.18.2"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/node": "22.15.14",
    "@types/uuid": "^10.0.0",
    "@types/ws": "^8.18.1",
    "@typescript-eslint/eslint-plugin": "^8.32.0",
    "@typescript-eslint/parser": "^8.32.0",
    "dotenv": "^16.5.0",
    "eslint": "^9.26.0",
    "jest": "^29.7.0",
    "nock": "^14.0.4",
    "prettier": "^3.5.3",
    "ts-jest": "^29.3.2",
    "typescript": "^5.8.3"
  }
}
