{
  "name": "@wioex/stream-sdk",
  "version": "2.1.0",
  "description": "Real-time financial data streaming SDK for WioEX API with enterprise-grade reliability",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/types/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "types": "./dist/types/index.d.ts"
    },
    "./managers": {
      "import": "./dist/esm/managers/index.js",
      "require": "./dist/cjs/managers/index.js",
      "types": "./dist/types/managers/index.d.ts"
    }
  },
  "files": [
    "dist",
    "src",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "npm run build:clean && npm run build:types && npm run build:cjs && npm run build:esm",
    "build:clean": "rimraf dist",
    "build:types": "tsc --emitDeclarationOnly --outDir dist/types",
    "build:cjs": "tsc --module commonjs --outDir dist/cjs",
    "build:esm": "tsc --module esnext --outDir dist/esm",
    "build:umd": "webpack --config webpack.umd.js",
    "dev": "tsc --watch --outDir dist/esm",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:e2e": "jest --config jest.e2e.config.js",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write src/**/*.ts",
    "type-check": "tsc --noEmit",
    "docs": "typedoc src/index.ts",
    "prepublishOnly": "npm run build",
    "release": "npm run prepublishOnly && npm publish",
    "size": "bundlesize"
  },
  "keywords": [
    "wioex",
    "financial-data",
    "real-time",
    "websocket",
    "trading",
    "market-data",
    "streaming",
    "typescript",
    "api",
    "sdk"
  ],
  "author": "WioEX Team <support@wioex.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/wioex/stream-sdk.git"
  },
  "bugs": {
    "url": "https://github.com/wioex/stream-sdk/issues"
  },
  "homepage": "https://github.com/wioex/stream-sdk#readme",
  "peerDependencies": {
    "typescript": ">=4.5.0"
  },
  "dependencies": {
    "@msgpack/msgpack": "^3.0.0",
    "eventemitter3": "^5.0.1"
  },
  "devDependencies": {
    "@types/jest": "^29.5.5",
    "@types/node": "^20.8.0",
    "@typescript-eslint/eslint-plugin": "^6.7.4",
    "@typescript-eslint/parser": "^6.7.4",
    "bundlesize": "^0.18.1",
    "eslint": "^8.50.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-prettier": "^5.0.0",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "prettier": "^3.0.3",
    "rimraf": "^5.0.5",
    "ts-jest": "^29.1.1",
    "typedoc": "^0.25.2",
    "typescript": "^5.2.2",
    "webpack": "^5.88.2",
    "webpack-cli": "^5.1.4"
  },
  "engines": {
    "node": ">=16.0.0",
    "npm": ">=7.0.0"
  },
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not dead",
    "not ie 11"
  ],
  "bundlesize": [
    {
      "path": "./dist/umd/wioex-stream-sdk.min.js",
      "maxSize": "50 kB"
    },
    {
      "path": "./dist/esm/index.js",
      "maxSize": "30 kB"
    }
  ]
}