-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 883 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
{
"name": "grpcflair",
"version": "0.1.0",
"private": true,
"scripts": {
"clean": "lerna clean --yes && rimraf node_modules",
"test": "lerna run test",
"proto-to-json": "gf-proto-to-json",
"reflection-to-json": "gf-reflection-to-json",
"generateExample": "gf-proto-to-json example/definitions/protos/helloworld.proto > web/public/definitions.json",
"generateExampleReflection": "gf-reflection-to-json example/definitions/reflection/helloworld-reflection.bin > web/public/definitions.json"
},
"dependencies": {
"@grpcflair/proto-to-json": "*",
"@grpcflair/reflection-to-json": "*"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
},
"devDependencies": {
"lerna": "^8.1.2",
"rimraf": "^5.0.5"
}
}