{
  "name": "okx-v5-ws",
  "version": "0.1.0",
  "description": "This is a non-official OKX V5 websocket SDK for nodejs.",
  "main": "dist/main.js",
  "module": "dist/main.js",
  "engines": {
    "node": ">=16.0.0"
  },
  "scripts": {
    "start": "ts-node ./src/main.ts",
    "dev": "ts-node ./src/dev.ts",
    "prebuild": "rimraf dist",
    "build": "tsc",
    "watch": "tsc --watch",
    "test": "jest --coverage",
    "test:watch": "jest --coverage --watch",
    "format": "prettier --write ./src/**.ts ./test/**.ts",
    "lint": "eslint ./src --ext .ts"
  },
  "keywords": [
    "okx",
    "okx v5",
    "okx v5 ws"
  ],
  "author": "airic yu",
  "repository": {
    "type": "git",
    "url": "https://github.com/airicyu/okx-v5-ws"
  },
  "license": "MIT",
  "devDependencies": {
    "@tsconfig/node18": "^1.0.1",
    "@types/crypto-js": "^4.1.1",
    "@types/node": "^18.11.9",
    "@types/websocket": "^1.0.5",
    "@typescript-eslint/eslint-plugin": "^5.42.1",
    "@typescript-eslint/parser": "^5.42.1",
    "eslint": "^8.27.0",
    "eslint-config-prettier": "^8.5.0",
    "prettier": "^2.7.1",
    "rimraf": "^3.0.2",
    "ts-node": "^10.9.1",
    "typescript": "^4.8.4"
  },
  "dependencies": {
    "crypto-js": "^4.1.1",
    "events": "^3.3.0",
    "uuid": "^9.0.0",
    "websocket": "^1.0.34"
  }
}
