{
  "name": "proto-client",
  "version": "0.9.0",
  "description": "A simple, typed gRPC Client with static code generation",
  "author": "Corey Hart <corey@codenothing.com>",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": "./bin/proto-client",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/codenothing/proto-client.git"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "build": "yarn clean && tsc -p tsconfig.json",
    "lint": "eslint . --ext .ts",
    "pretest": "yarn build && yarn lint",
    "test": "jest --verbose --coverage --collectCoverageFrom=src/**",
    "prepublish": "yarn test"
  },
  "keywords": [
    "proto",
    "protobuf",
    "grpc",
    "client"
  ],
  "files": [
    "dist",
    "bin",
    "package.json",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@grpc/grpc-js": "^1.7.3",
    "@types/cli-color": "^2.0.2",
    "@types/yargs": "^17.0.13",
    "cli-color": "^2.0.3",
    "protobufjs": "^7.1.2",
    "protobufjs-cli": "^1.0.2",
    "yargs": "^17.6.2"
  },
  "devDependencies": {
    "@grpc/proto-loader": "^0.7.3",
    "@types/jest": "^29.2.2",
    "@types/node": "^18.11.9",
    "@typescript-eslint/eslint-plugin": "^5.42.1",
    "@typescript-eslint/parser": "^5.42.1",
    "eslint": "^8.27.0",
    "jest": "^29.3.0",
    "ts-jest": "^29.0.3",
    "typescript": "^4.8.4"
  }
}
