forked from dtraft/twirp-rpc-client
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 906 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
36
{
"name": "twirp-rpc-client",
"version": "0.1.2",
"description": "Typescript twirp client built for use with ts-proto",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"prettier": "prettier --write src/**/*.ts",
"prettier:check": "prettier --check src/**/*.ts",
"build": "tsc",
"example": "protoc --plugin=node_modules/ts-proto/protoc-gen-ts_proto example/service.proto -I./example --ts_proto_out=./example"
},
"keywords": [
"twirp",
"protocol buffers",
"protobufs",
"typescript"
],
"author": "Drew Trafton <dtraft@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "^0.21.0"
},
"devDependencies": {
"jest": "^26.6.3",
"nock": "^13.0.5",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-proto": "^1.39.0",
"typescript": "^4.1.2"
}
}