forked from stepci/cool-grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 863 Bytes
/
package.json
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
28
29
30
31
32
33
34
35
{
"name": "cool-grpc",
"version": "1.2.3",
"description": "Simple, stupid gRPC client for Node written in TypeScript",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"test": "ts-node ./tests/test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stepci/cool-grpc.git"
},
"keywords": [
"grpc",
"client"
],
"author": "Mish Ushakov <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/stepci/cool-grpc/issues"
},
"homepage": "https://github.com/stepci",
"dependencies": {
"@grpc/grpc-js": "^1.7.1",
"@grpc/proto-loader": "^0.7.10"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.7.18",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}