Metadata-Version: 2.1
Name: typescript-protobuf
Version: 0.5.0
Summary: Generate d.ts files for JSON objects from protobuf specs
Home-page: https://github.com/bayesimpact/json-ts-protobuf
Author: Cyrille Corpet
Author-email: cyrille@bayesimpact.org
License: The MIT License (MIT)
Keywords: proto,typescript
Platform: UNKNOWN
Requires-Dist: protobuf

# json-ts-protobuf: Generate Typescript declaration files for JSON objects from protobuf specs

## Requirements
protoc 3.0.0 or greater python 3.5 Other configurations may work.

## Python Implementation
There is currently only a python implementation of the plugin

The plugin can be installed with

    pip install json-ts-protobuf

On posix, ensure that the protoc-gen-json-ts script installed onto your $PATH. Then run.

    protoc --json-ts_out=output/location

Alternately, you can explicitly provide the path:

    protoc --plugin=protoc-gen-json-ts=path/to/protoc-gen-json-ts --json-ts_out=output/location

To suppress output, you can run

    protoc --json-ts_out=quiet:output/location



