UNPKG

@tsuk1ko/cq-websocket

Version:

A Node SDK for developing QQ chatbots based on WebSocket, which is depending on CoolQ and CQHTTP API plugin.

84 lines (83 loc) 2.21 kB
{ "name": "@tsuk1ko/cq-websocket", "version": "3.0.0", "description": "A Node SDK for developing QQ chatbots based on WebSocket, which is depending on CoolQ and CQHTTP API plugin.", "main": "./src/index.js", "types": "./cq-websocket.d.ts", "files": [ "src", "dist", "cq-websocket.d.ts" ], "scripts": { "test": "nyc ava test/**/*.test.js", "build": "webpack --config ./webpack.config.js", "build-demo": "webpack --config demo/webpack/webpack.config.js", "demo-browser": "http-server demo/webpack/www", "demo-echobot": "node ./demo/echobot.js", "coverage": "nyc report --reporter=text-lcov | coveralls", "commit": "git-cz", "lint": "eslint src", "lint:fix": "eslint src --fix", "postversion": "tpv" }, "repository": { "type": "git", "url": "git+https://github.com/Tsuk1ko/node-cq-websocket.git" }, "keywords": [ "CoolQ", "websocket" ], "author": "神代綺凛 <i@loli.best>", "license": "MIT", "bugs": { "url": "https://github.com/Tsuk1ko/node-cq-websocket/issues" }, "homepage": "https://github.com/Tsuk1ko/node-cq-websocket#readme", "config": { "commitizen": { "path": "cz-conventional-changelog" } }, "dependencies": { "deep-equal": "^2.2.3", "lodash.get": "^4.4.2", "shortid": "^2.2.16", "ws": "^8.14.2" }, "devDependencies": { "@tsuk1ko/postversion": "^1.0.2", "@types/ws": "^8.5.10", "ava": "^1.4.1", "commitizen": "^4.3.0", "coveralls": "^3.1.1", "cz-conventional-changelog": "^3.3.0", "eslint": "^8.54.0", "eslint-config-prettier": "^8.10.0", "eslint-config-standard": "^16.0.3", "eslint-plugin-import": "^2.29.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^6.1.1", "eslint-plugin-standard": "^5.0.0", "http-server": "^0.12.3", "mri": "^1.2.0", "nyc": "^14.1.1", "prettier": "^2.8.8", "proxyquire": "^2.1.3", "sinon": "^7.5.0", "tape": "^4.17.0", "webpack": "^4.47.0", "webpack-cli": "^4.10.0" }, "nyc": { "include": [ "src/**/*.js", "!src/util/**/*" ] }, "ava": { "babel": false, "compileEnhancements": false } }