{
  "name": "@socket-mesh/client",
  "description": "A TCP socket pair for easily transmitting full messages without worrying about request size limits.",
  "version": "19.1.1",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "./dist"
  ],
  "browser": {
    "ws": "./lib/ws-browser.js"
  },
  "author": {
    "name": "Greg Kimmy"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/socket-mesh/client-server.git"
  },
  "bugs": {
    "url": "https://github.com/socket-mesh/client-server/labels/client"
  },
  "devDependencies": {
    "@kineticcafe/rollup-plugin-delete": "^3.0.2",
    "@rollup/plugin-alias": "^6.0.0",
    "@rollup/plugin-commonjs": "^29.0.2",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@rollup/plugin-terser": "^1.0.0",
    "@rollup/plugin-typescript": "^12.3.0",
    "@types/clone-deep": "^4.0.4",
    "@types/jsonwebtoken": "^9.0.10",
    "@types/ws": "^8.18.1",
    "jsonwebtoken": "^9.0.3",
    "rollup": "^4.60.1",
    "rollup-plugin-dts": "^6.4.1",
    "tslib": "^2.8.1",
    "@socket-mesh/typescript-config": "^0.0.0",
    "@socket-mesh/writable-consumable-stream": "^4.3.3"
  },
  "dependencies": {
    "buffer": "^6.0.3",
    "events": "^3.3.0",
    "isomorphic-ws": "^5.0.0",
    "ws": "^8.20.0",
    "@socket-mesh/formatter": "^4.1.2",
    "@socket-mesh/errors": "^3.2.2",
    "@socket-mesh/channels": "^6.1.6",
    "@socket-mesh/async-stream-emitter": "^7.2.3",
    "@socket-mesh/auth": "^2.2.2",
    "@socket-mesh/core": "^2.1.1"
  },
  "keywords": [
    "ncom",
    "tcp",
    "simple",
    "socket",
    "messages"
  ],
  "engines": {
    "node": ">= 0.8.0"
  },
  "scripts": {
    "build": "node ../../scripts/build.mjs && tsc --project tsconfig.build.json",
    "bundle": "rollup --config ./rollup.config.js",
    "deploy": "node ../../scripts/publish.mjs",
    "lint": "eslint . --c ../../eslint.config.mjs",
    "lint:fix": "eslint . --c ../../eslint.config.mjs --fix",
    "test": "tsx --tsconfig ./tsconfig.build.json --test ./src/**/*.{spec,test}.ts ./test/**/*.{spec,test}.ts"
  }
}