smartknob/software/js/packages/smartknobjs-proto/package.json
Scott Bezek 2afc38f7f9
Updated config schema, improved demo (#121)
- Breaking proto updates
- added position nonce to config, and added ability to specify a
sub_position via config as well => more flexibility to control position
via config
- added version as first field of serial protocol messages, so future
breaking proto updates can easily be detected and ignored
- Fixed up web-based demo of a mock video editor/timeline jog/playback
controller
- Fixed config/state flow so that mode changes correctly maintain
playback position
  - Demo: https://www.youtube.com/watch?v=J9192DfZplk
2023-06-13 22:45:49 -07:00

16 lines
480 B
JSON

{
"name": "smartknobjs-proto",
"version": "1.0.0",
"description": "SmartKnob Protobuf Generated Code",
"main": "dist/smartknob_proto.js",
"types": "dist/smartknob_proto.d.ts",
"scripts": {
"build": "mkdir -p dist && pbjs --target static-module --out dist/smartknob_proto.js ../../../../proto/*.proto && pbts -o dist/smartknob_proto.d.ts dist/smartknob_proto.js"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"protobufjs": "^6.11.2"
}
}