-
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) · 844 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 844 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": "ubo-rpc-client-ts-proto",
"version": "0.0.0",
"description": "A demo gRPC client for UBO using ts-proto",
"author": "Sassan Haradji <me@sassanh.com>",
"license": "Apache-2.0",
"readme": "README.md",
"keywords": [
"gRPC",
"ts-proto",
"ubo",
"TypeScript"
],
"repository": "https://github.com/ubopod/ubo-grpc-clients",
"dependencies": {
"@grpc/grpc-js": "^1.11.3",
"tsx": "^4.19.1"
},
"scripts": {
"compile": "mkdir -p generated && npx grpc_tools_node_protoc --plugin=protoc-gen-ts_proto=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=./generated --ts_proto_opt=outputServices=grpc-js,esModuleInterop=true -I ../../proto/ ../../proto/store/v1/store.proto",
"start": "tsx ./client.ts"
},
"devDependencies": {
"grpc-tools": "^1.12.4",
"ts-proto": "^2.2.0"
}
}