forked from npv2k1/learn-grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 751 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "grpc-codegen-tool",
"version": "1.0.0",
"description": "Multi-language gRPC code generator",
"main": "codegen.js",
"bin": {
"grpc-codegen": "./codegen.js"
},
"scripts": {
"build": "node codegen.js",
"build:go": "node codegen.js --language=go",
"build:python": "node codegen.js --language=python",
"build:rust": "node codegen.js --language=rust",
"build:typescript": "node codegen.js --language=typescript",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["grpc", "protobuf", "codegen", "multi-language"],
"author": "",
"license": "ISC",
"dependencies": {
"commander": "^11.0.0",
"chalk": "^4.1.2"
},
"devDependencies": {
"ts-proto": "^1.138.0"
}
}