-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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": "@kanziw/grpc-es",
"type": "module",
"version": "0.9.9",
"description": "[DEPRECATED] A collection of grpc libraries using connect-es",
"repository": {
"type": "git",
"url": "git+https://github.com/kanziw/kanziwjs.git",
"directory": "packages/grpc-es"
},
"author": {
"name": "Jiwoong Jung",
"email": "[email protected]"
},
"homepage": "https://github.com/kanziw/kanziwjs/tree/main/packages/grpc-es#readme",
"license": "MIT",
"keywords": [
"grpc",
"connect-es",
"bufbuild-es",
"protobuf-es",
"protoc-gen-es",
"kanziw"
],
"scripts": {
"publish": "yarn publish-if-not-published",
"publish:rc": "yarn publish-if-not-published --no-tag-check -- --tag rc"
},
"devDependencies": {
"publish-if-not-published": "^3.1.3"
},
"files": [
"index.*"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.cjs",
"import": "./index.mjs"
},
"./package.json": "./package.json"
}
}