{
    "name": "better-grpc",
    "version": "0.3.2",
    "description": "Simple, typed gRPC for TypeScript",
    "author": "Photon AI",
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/photon-hq/better-grpc.git"
    },
    "publishConfig": {
        "registry": "https://registry.npmjs.org/",
        "access": "public"
    },
    "type": "module",
    "main": "./dist/index.js",
    "module": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.js"
        }
    },
    "files": [
        "dist",
        "README.md",
        "LICENSE"
    ],
    "keywords": [
        "grpc",
        "typescript",
        "promise",
        "trpc"
    ],
    "scripts": {
        "dev": "tsup --watch",
        "build": "tsup",
        "type-check": "tsc --noEmit",
        "lint": "biome check .",
        "lint:fix": "biome check --write .",
        "format": "biome format --write .",
        "test": "bun test",
        "test:node": "node --test",
        "test:watch": "bun test --watch",
        "test:coverage": "bun test --coverage",
        "prepublishOnly": "npm run lint && npm run type-check && npm run test && npm run build",
        "prepack": "npm run build"
    },
    "devDependencies": {
        "@biomejs/biome": "^2.3.7",
        "@octokit/rest": "^22.0.1",
        "@types/bun": "latest",
        "tsup": "^8.5.1"
    },
    "peerDependencies": {
        "typescript": "^5"
    },
    "dependencies": {
        "@msgpack/msgpack": "^3.1.2",
        "async-mutex": "^0.5.0",
        "it-pushable": "^3.2.3",
        "nice-grpc": "^2.1.13",
        "zod": "^4.1.12"
    },
    "engines": {
        "node": ">=18.0.0"
    }
}
