forked from thesayyn/protoc-gen-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.7 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
37
38
39
40
41
42
43
44
45
46
{
"name": "protoc-gen-ts",
"description": "Compile protocol buffers descriptors to Typescript.",
"version": "0.8.3",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "thesayyn",
"url": "https://github.com/thesayyn"
},
"funding": {
"type": "individual",
"url": "https://www.buymeacoffee.com/thesayyn"
},
"repository": {
"type": "git",
"url": "https://github.com/thesayyn/protoc-gen-ts"
},
"scripts": {
"test": "bazel test //...",
"update_checked_in": "bazel query --noshow_progress 'attr(tags, \"checked_in_update\", //...)' | xargs -n 1 bazel run --ui_event_filters=-info,-stderr --noshow_progress",
"update_checked_in_test": "bazel query --noshow_progress 'attr(tags, \"checked_in_update\", //test/...)' | xargs -n 1 bazel run --ui_event_filters=-info,-stderr --noshow_progress",
"update_checked_in_src": "bazel query --noshow_progress 'attr(tags, \"checked_in_update\", //src/...)' | xargs -n 1 bazel run --ui_event_filters=-info,-stderr --noshow_progress",
"release": "bazel run //:package.publish -- --access public --tag latest --registry https://registry.npmjs.org"
},
"bin": {
"protoc-gen-ts": "./bin/protoc-gen-ts.js"
},
"peerDependencies": {
"google-protobuf": "^3.13.0",
"typescript": ">=4"
},
"devDependencies": {
"@bazel/bazelisk": "^1.9.0",
"@bazel/jasmine": "^5.0.0",
"@bazel/typescript": "^5.0.0",
"@grpc/grpc-js": "^1.3.4",
"@types/google-protobuf": "^3.15.5",
"@types/jasmine": "^3.7.7",
"@types/node": "^15.12.5",
"google-protobuf": "^3.17.3",
"jasmine": "^3.7.0",
"jasmine-core": "^3.7.1",
"typescript": "^4.3.4"
}
}