-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.45 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "grpc-es-bridge",
"version": "0.1.1",
"description": "",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/iamchanii/grpc-es-bridge#readme",
"bugs": {
"url": "https://github.com/iamchanii/grpc-es-bridge/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamchanii/grpc-es-bridge.git"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./connectrpc": {
"types": "./dist/connectrpc.d.ts",
"import": "./dist/connectrpc.js"
}
},
"scripts": {
"build": "tsdown",
"prepublishOnly": "tsdown",
"prepare": "lefthook install"
},
"author": "Chanhee Lee <contact@imch.dev>",
"keywords": [
"grpc"
],
"peerDependencies": {
"@bufbuild/protobuf": "^2",
"@grpc/grpc-js": "^1",
"@connectrpc/connect": "^2"
},
"peerDependenciesMeta": {
"@connectrpc/connect": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@bufbuild/protobuf": "^2.2.3",
"@connectrpc/connect": "^2.0.2",
"@grpc/grpc-js": "^1.12.6",
"lefthook": "^1.11.3",
"oxc-transform": "^0.56.4",
"publint": "^0.3.8",
"tsdown": "^0.6.4",
"unplugin-unused": "^0.4.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome"
]
}
}