-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (25 loc) · 940 Bytes
/
package.json
File metadata and controls
29 lines (25 loc) · 940 Bytes
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
{
"name": "@yolean/envoy",
"version": "1.32.1",
"description": "",
"private": false,
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"check": "protoc --version | grep 'libprotoc 25.2'",
"protodownload": "./proto-download.sh",
"typegen": "protoc --proto_path=./proto --proto_path=./node_modules/google-proto-files --plugin=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_opt=snakeToCamel=false --ts_proto_out=./types envoy/service/auth/v3/external_auth.proto",
"refresh": "npm run check && npm install --ignore-scripts --strict-peer-deps && mkdir -p proto types && npm run protodownload && npm run typegen && echo 'Done'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@bufbuild/protobuf": "2.2.3"
},
"devDependencies": {
"google-proto-files": "4.2.0",
"ts-proto": "2.6.0"
},
"author": "",
"license": "Apache-2.0"
}