{
  "name": "rainbow-websocket",
  "version": "0.0.6",
  "description": "rainbow-websocket is an basic implement of websocket base on nodejs, including authentication、promise encapsulation、error handle and so on...",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "scripts": {
    "build": "npm run build:cjs && npm run build:esm && npm run build:umd",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:umd": "webpack --mode=production --config webpack.config.js",
    "ws-server": "ts-node test/server/index.ts",
    "page-test": "webpack-dev-server --config webpack.config.js --open --hot"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/HXWfromDJTU/rainbow-websocket.git"
  },
  "author": "",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/HXWfromDJTU/rainbow-websocket/issues"
  },
  "homepage": "https://github.com/HXWfromDJTU/rainbow-websocket#readme",
  "devDependencies": {
    "@types/node": "^14.0.14",
    "@typescript-eslint/eslint-plugin": "^4.6.1",
    "@typescript-eslint/parser": "^4.6.1",
    "clean-webpack-plugin": "^3.0.0",
    "eventemitter3": "^4.0.4",
    "html-webpack-plugin": "^4.5.0",
    "lodash.uniqueid": "^4.0.1",
    "ts-loader": "^7.0.5",
    "typescript": "^3.9.7",
    "webpack-dev-server": "^3.11.0",
    "webpack-merge": "^5.3.0",
    "ws": "^7.3.0"
  },
  "dependencies": {
    "eslint": "^7.13.0",
    "typescript": "^3.9.6",
    "webpack": "^4.43.0",
    "webpack-cli": "^3.3.12"
  }
}
