{
  "name": "@halsp/micro-tcp",
  "version": "2.4.5",
  "description": "Halsp 微服务 TCP 通信",
  "engines": {
    "node": ">=16"
  },
  "homepage": "https://halsp.org",
  "repository": {
    "type": "git",
    "url": "https://github.com/halsp/core"
  },
  "keywords": [
    "halsp",
    "micro",
    "pubsub",
    "microservice",
    "microservices",
    "tcp"
  ],
  "bugs": {
    "url": "https://github.com/halsp/core/issues",
    "email": "support@hal.wang"
  },
  "private": false,
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "type": "module",
  "main": "./dist-cjs/index.cjs",
  "module": "./dist-mjs/index.mjs",
  "types": "./dist-mjs/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist-cjs/index.cjs",
      "import": "./dist-mjs/index.mjs",
      "types": "./dist-mjs/index.d.ts"
    },
    "./client": {
      "require": "./dist-cjs/client/index.cjs",
      "import": "./dist-mjs/client/index.mjs",
      "types": "./dist-mjs/client/index.d.ts"
    },
    "./server": {
      "require": "./dist-cjs/server/index.cjs",
      "import": "./dist-mjs/server/index.mjs",
      "types": "./dist-mjs/server/index.d.ts"
    },
    "./package.json": "./package.json"
  },
  "typesVersions": {
    "*": {
      "client": [
        "./dist-mjs/client/index.d.ts"
      ],
      "server": [
        "./dist-mjs/server/index.d.ts"
      ]
    }
  },
  "scripts": {
    "build:cjs": "halsp build --tsconfigPath tsconfig.cjs.json --moduleType cjs --cleanDist",
    "build:mjs": "halsp build --tsconfigPath tsconfig.mjs.json --moduleType mjs --cleanDist",
    "prebuild": "npm run lint",
    "build": "npm run build:mjs && npm run build:cjs",
    "lint": "eslint src test --ext .ts",
    "pretest": "npm run build",
    "test": "jest"
  },
  "author": "hal-wang",
  "license": "MIT",
  "dependencies": {
    "@halsp/core": "^2.4.5",
    "@halsp/micro": "^2.4.5"
  },
  "files": [
    "/dist-cjs/**/*",
    "/dist-mjs/**/*",
    "/src/**/*",
    "/test/**/*",
    ".eslintignore",
    ".eslintrc.js",
    ".gitignore",
    "LICENSE",
    "package.json",
    "README.md",
    "tsconfig.json"
  ],
  "gitHead": "63b626c01b98b90cc1b3f41c9a91baaea711c7bb"
}
