first commit

This commit is contained in:
Дмитрий
2026-03-24 14:18:09 +03:00
commit 01821526d2
10 changed files with 923 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "@lendry-erp/contracts",
"version": "1.0.0",
"description": "Protobuf definitions and generated TypeScript types",
"type": "commonjs",
"scripts": {
"generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
},
"files": [
"proto",
"gen"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@nestjs/microservices": "^11.1.17",
"rxjs": "^7.8.2"
}
}