forked from thesayyn/protoc-gen-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.27 KB
/
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": "protoc-gen-ts",
"description": "Compile protocol buffers descriptors to Typescript.",
"version": "0.3.6-rc4",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "thesayyn",
"url": "https://github.com/thesayyn"
},
"scripts": {
"test": "bazel build //test:codegen && node ./scripts/sync_generated_protos.js test && bazel test //test/... --test_output=errors",
"release": "bazel run //:package.publish -- --access public --tag latest",
"codegen": "node ./scripts/sync_compiler_protos.js && bazel build //src:codegen && node ./scripts/sync_generated_protos.js src/compiler && bazel build //src:compiler && node ./scripts/sync_generated_protos.js src/compiler js"
},
"bin": {
"protoc-gen-ts": "./bin/protoc-gen-ts"
},
"peerDependencies": {
"google-protobuf": "^3.13.0",
"typescript": "^4.0.2"
},
"devDependencies": {
"@bazel/bazelisk": "^1.7.5",
"@bazel/jasmine": "^3.4.0",
"@bazel/typescript": "^3.4.0",
"@grpc/grpc-js": "^1.2.12",
"@types/google-protobuf": "^3.15.0",
"@types/jasmine": "^3.6.9",
"@types/node": "^12.12.2",
"google-protobuf": "^3.11.4",
"jasmine": "^3.7.0",
"jasmine-core": "^3.7.1",
"typescript": "^4.0.2"
}
}