Files
livekit-protocol/packages/javascript/package.json
T
lukasIO c04669aee6 Separate protobufs and set up changesets publishing workflow (#629)
* Separate protobufs from module code

* update generate workflow

* install mage only

* fix paths

* generated protobuf

* fix test action

* fix cache dependency path

* setup versioning

* add golang workspace file

* delete generated files from git

* Update gitinore

* fix release workflow

* Move go code back to root

* fix working directory

* fix changeset script

* revert debug changes

* remove go cache path

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
2024-03-08 10:37:35 +01:00

28 lines
932 B
JSON

{
"name": "@livekit/protocol",
"version": "1.10.1",
"description": "",
"type": "module",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src"
],
"scripts": {
"generate:version": "genversion --esm --semi src/gen/version.js",
"generate:proto": "protoc --es_out src/gen --es_opt target=js+dts -I=../../protobufs ../../protobufs/livekit_rtc.proto ../../protobufs/livekit_models.proto ../../protobufs/livekit_agent.proto ../../protobufs/livekit_webhook.proto ../../protobufs/livekit_egress.proto ../../protobufs/livekit_ingress.proto ../../protobufs/livekit_sip.proto",
"build": "pnpm generate:version && pnpm generate:proto"
},
"keywords": [],
"author": "LiveKit",
"license": "Apache-2.0",
"devDependencies": {
"@bufbuild/buf": "^1.29.0",
"@bufbuild/protoc-gen-es": "^1.7.2",
"genversion": "^3.2.0"
},
"dependencies": {
"@bufbuild/protobuf": "^1.7.2"
}
}