Skip to content

Commit

Permalink
rename npm name to wechaty-grpc (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
huan committed Feb 13, 2021
1 parent 56c24b9 commit 68d0592
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"name": "@chatie/grpc",
"version": "0.18.12",
"description": "gRPC for Chatie",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.js",
"name": "wechaty-grpc",
"version": "0.19.0",
"description": "gRPC for Wechaty",
"main": "dist/src/mod.js",
"typings": "dist/src/mod.d.js",
"directories": {
"example": "examples",
"test": "tests"
},
"scripts": {
"clean": "shx rm -fr dist/* generated/*",
"dist": "npm run clean && npm run generate && tsc && shx mv generated/ dist/",
"dist": "npm-run-all clean generate && tsc && shx mv generated/ dist/",
"dist:py": "python3 setup.py sdist bdist_wheel",
"publish:py": "twine upload dist/*",
"example:server": "nodemon --exec ts-node examples/server.ts",
"example:client": "ts-node examples/client.ts",
"generate": "bash -x scripts/generate-stub.sh",
"lint": "npm run lint:es && npm run lint:ts && npm run lint:proto",
"lint": "npm-run-all lint:es lint:ts lint:proto",
"lint:es": "eslint --ignore-pattern fixtures/ \"src/**/*.ts\" \"tests/**/*.ts\" \"examples/**/*.ts\"",
"lint:ts": "tsc --noEmit",
"lint:proto": "bash -c 'protoc -I proto/wechaty --lint_out=. $(find proto/ -type f -name *.proto)'",
Expand All @@ -28,7 +28,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chatie/grpc.git"
"url": "git+https://github.com/wechaty/grpc.git"
},
"keywords": [
"grpc",
Expand All @@ -41,9 +41,9 @@
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Chatie/grpc/issues"
"url": "https://github.com/wechaty/grpc/issues"
},
"homepage": "https://github.com/Chatie/grpc#readme",
"homepage": "https://github.com/wechaty/grpc#readme",
"dependencies": {
"grpc": "^1.24.2",
"google-protobuf": "^3.11.3"
Expand All @@ -59,6 +59,7 @@
"grpc_tools_node_protoc_ts": "^5.0.0",
"grpcc": "^1.1.3",
"nodemon": "^2.0.0",
"npm-run-all": "^4.1.5",
"request": "^2.88.2",
"shx": "^0.3.2",
"ts-protoc-gen": "^0.13.0",
Expand Down
File renamed without changes.

0 comments on commit 68d0592

Please sign in to comment.