{
  "name": "websocket-proxy-http-request",
  "version": "0.0.7",
  "description": "通过WebSocket将外网流量转发到内网服务",
  "main": "dist/index.js",
  "bin": {
    "websocket-proxy-http-request": "bin/ws-proxy.js",
    "ws-proxy": "bin/ws-proxy.js",
    "ws-proxy-server": "bin/ws-proxy-server.js",
    "ws-client-agent": "bin/ws-client-agent.js"
  },
  "files": [
    "bin",
    "dist",
    "package.json",
    "README.md"
  ],
  "scripts": {
    "build": "tsc",
    "dev:proxy": "nodemon --exec ts-node src/proxy-server.ts",
    "dev:client": "nodemon --exec ts-node src/client-agent.ts",
    "dev:mock": "nodemon --exec ts-node mock/server.ts",
    "start:proxy": "node dist/src/proxy-server.js",
    "start:client": "node dist/src/client-agent.js",
    "test": "jest",
    "test:proxy": "node test-proxy-api.js",
    "test:health": "node test-health-api.js",
    "lint": "eslint src --ext .ts",
    "format": "prettier --write \"src/**/*.ts\"",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "websocket",
    "proxy",
    "http",
    "tunnel"
  ],
  "author": "",
  "license": "MIT",
  "dependencies": {
    "axios": "^1.6.2",
    "dotenv": "^16.3.1",
    "express": "^4.18.2",
    "winston": "^3.11.0",
    "ws": "^8.16.0"
  },
  "devDependencies": {
    "@types/express": "^4.17.21",
    "@types/jest": "^29.5.11",
    "@types/node": "^20.10.6",
    "@types/ws": "^8.5.10",
    "@typescript-eslint/eslint-plugin": "^6.17.0",
    "@typescript-eslint/parser": "^6.17.0",
    "eslint": "^8.56.0",
    "jest": "^29.7.0",
    "nodemon": "^3.0.2",
    "prettier": "^3.1.1",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.2",
    "typescript": "^5.3.3"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  }
}
