This commit is contained in:
2026-03-05 19:14:23 +03:00
parent 0cf6865b0d
commit b7bbef47eb
7 changed files with 29 additions and 23 deletions

View File

@@ -4,12 +4,15 @@
"type": "module",
"private": true,
"scripts": {
"dev": "bun --watch ./src/index.ts"
"dev": "bun --watch ./src/index.ts",
"proto": "protoc --plugin=node_modules/.bin/protoc-gen-ts_proto --ts_proto_opt=esModuleInterop=true --ts_proto_out=./src/grpc/types -I ./proto/ ./proto/*.proto",
"test": "protoc --plugin=node_modules/.bin/protoc-gen-ts_proto --ts_proto_opt=esModuleInterop=true --ts_proto_out=./src/grpc/types -I ./proto/ ./proto/*.proto"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/bun": "latest",
"prettier": "3.8.1"
"prettier": "3.8.1",
"ts-proto": "^2.11.4"
},
"peerDependencies": {
"typescript": "^5"