forked from connectrpc/connect-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 899 Bytes
/
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
{
"name": "@bufbuild/protoc-gen-connect-es",
"version": "0.7.0",
"description": "Code generator for Connect",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/bufbuild/connect-es.git",
"directory": "packages/protoc-gen-connect-es"
},
"bin": {
"protoc-gen-connect-es": "bin/protoc-gen-connect-es"
},
"engines": {
"node": ">=14"
},
"scripts": {
"clean": "rm -rf ./dist/cjs/*",
"build": "npx tsc --project tsconfig.json --module commonjs --outDir ./dist/cjs"
},
"preferUnplugged": true,
"dependencies": {
"@bufbuild/protoplugin": "^1.0.0"
},
"peerDependencies": {
"@bufbuild/connect-web": "0.7.0",
"@bufbuild/protoc-gen-es": "^1.0.0"
},
"peerDependenciesMeta": {
"@bufbuild/connect-web": {
"optional": true
},
"@bufbuild/protoc-gen-es": {
"optional": true
}
}
}