{
  "name": "@solncebro/trade-engine",
  "version": "3.4.0",
  "description": "Universal trading engine library for cryptocurrency exchanges with Telegram integration and Firebase support",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "build": "rm -rf dist && yarn lint && yarn test --passWithNoTests && tsc -p tsconfig.json",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:integration": "node scripts/runIntegrationJest.js --runInBand",
    "test:integration:binance": "node scripts/runIntegrationJest.js --runInBand --testPathPatterns=binance",
    "test:integration:bybit": "node scripts/runIntegrationJest.js --runInBand --testPathPatterns=bybit",
    "test:integration:spot-fallback": "node scripts/runIntegrationJest.js --runInBand --testPathPatterns=spot-fallback",
    "test:integration:limit-orders": "node scripts/runIntegrationJest.js --runInBand --testPathPatterns=limit-orders",
    "test:integration:multiple-symbols": "node scripts/runIntegrationJest.js --runInBand --testPathPatterns=multiple-symbols",
    "test:integration:error-handling": "node scripts/runIntegrationJest.js --runInBand --testPathPatterns=error-handling",
    "test:integration:e2e-signal": "node scripts/runIntegrationJest.js --runInBand --testPathPatterns=e2e-signal",
    "test:integration:mvp": "node scripts/runIntegrationJest.js --runInBand --testPathPatterns='(spot-fallback|limit-orders|multiple-symbols|error-handling)'",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "prepublishOnly": "yarn build"
  },
  "sideEffects": false,
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "keywords": [
    "websocket",
    "trading",
    "binance",
    "bybit",
    "futures"
  ],
  "author": "solncebro",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/solncebro/trade-engine.git"
  },
  "homepage": "https://github.com/solncebro/trade-engine#readme",
  "bugs": {
    "url": "https://github.com/solncebro/trade-engine/issues"
  },
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@logtail/pino": "^0.4.0",
    "@solncebro/exchange-engine": "^0.13.0",
    "@solncebro/telegram-engine": "^0.2.0",
    "dayjs": "^1.11.18",
    "dotenv": "^16.4.5",
    "firebase-admin": "^12.0.0",
    "pino": "^9.6.0",
    "pino-pretty": "^10.3.1",
    "telegraf": "^4.16.3",
    "telegram": "^2.26.22"
  },
  "devDependencies": {
    "@eslint/js": "^9.34.0",
    "@types/eslint__js": "^8.42.3",
    "@types/jest": "^30.0.0",
    "@types/node": "^22.10.1",
    "@types/ws": "^8.5.13",
    "@typescript-eslint/eslint-plugin": "^8.41.0",
    "@typescript-eslint/parser": "^8.41.0",
    "eslint": "^9.34.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-import-resolver-typescript": "^4.4.4",
    "eslint-plugin-import": "^2.32.0",
    "jest": "^30.0.5",
    "prettier": "^3.6.2",
    "ts-jest": "^29.4.1",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.2",
    "typescript-eslint": "^8.41.0",
    "ws": "^8.18.0"
  }
}
