-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.26 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@emmveqz/grpc-web-native",
"version": "1.2.0",
"description": "Native gRPC client for web browser",
"main": "dist/grpc-web-client-proto-generator.js",
"types": "dist/grpc-web-client-proto-generator.d.ts",
"scripts": {
"gen-web-client-protos": "node ./dist/grpc-web-client-proto-generator.js",
"prepack": "npm run transpile-generator",
"transpile-generator": "npx tsc --build ./tsconfig.json"
},
"bin": {
"gen-web-client-protos": "dist/grpc-web-client-proto-generator.js"
},
"author": "Emmanuel V. Lopez",
"license": "ISC",
"homepage": "https://github.com/emmveqz/grpc-web-native#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/emmveqz/grpc-web-native.git"
},
"bugs": {
"url": "https://github.com/emmveqz/grpc-web-native/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"grpc",
"grpc-web",
"grpc-client",
"grpc-stream",
"grpc-streaming",
"grpc-js",
"grpc-stream-client",
"protobuf",
"protocol-buffers"
],
"dependencies": {
"protobufjs": "^7.4.0",
"protobufjs-cli": "^1.1.3"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/node": "^13.7.0",
"typescript": "^4.9.5"
}
}