Files
standardnotes-server/packages/grpc/package.json
Karol Sójko 4f62cac213 feat: add grpc sessions validation server (#928)
* feat: add grpc sessions validation server

* feat: add client implementation on api gateway

* fix: response codes

* fix: errored response

* feat: add configuring grpc as optional service proxy

* fix env vars

* fix linter issue
2023-11-16 10:10:42 +01:00

34 lines
718 B
JSON

{
"name": "@standardnotes/grpc",
"version": "1.0.0",
"engines": {
"node": ">=18.0.0 <21.0.0"
},
"description": "gRPC definitions for Standard Notes",
"author": "Standard Notes",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"publishConfig": {
"access": "public"
},
"license": "AGPL-3.0-or-later",
"scripts": {
"clean": "rm -fr dist",
"build": "tsc --build"
},
"dependencies": {
"@grpc/grpc-js": "^1.9.10",
"google-protobuf": "^3.21.2"
},
"devDependencies": {
"@types/google-protobuf": "^3",
"grpc-tools": "^1.12.4",
"grpc_tools_node_protoc_ts": "^5.3.3",
"typescript": "^5.0.4"
}
}