Files
contracts/package.json
Дмитрий f5d18a63e5
All checks were successful
Publish / Publish Job (push) Successful in 1m14s
first commit
2026-03-26 15:45:17 +03:00

30 lines
692 B
JSON

{
"name": "@lendry-erp/contracts",
"version": "1.0.0",
"description": "Protobuf definitions and generated TypeScript types",
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
},
"files": [
"dist",
"proto",
"gen"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@nestjs/microservices": "^11.1.17",
"rxjs": "^7.8.2",
"ts-proto": "^2.11.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^6.0.2"
}
}