diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f449421 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 bilthon + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 59fac90..532271a 100644 --- a/README.md +++ b/README.md @@ -1 +1,14 @@ -# satstreamr-signaling \ No newline at end of file +# satstreamr-signaling + +WebSocket signaling server for [satstreamr](https://github.com/bilthon/satstreamr) — a peer-to-peer metered live video streaming platform. This server only relays WebRTC offer/answer/ICE-candidate messages between a streamer and a viewer; it sees no media and no payment data. + +See the [satstreamr README](https://github.com/bilthon/satstreamr) and [INSTALL.md](https://github.com/bilthon/satstreamr/blob/main/INSTALL.md) for setup instructions and the overall architecture. + +## License + +satstreamr-signaling is released under the [MIT License](LICENSE). + +Third-party dependencies retain their own licenses; all current runtime +and build-time dependencies are MIT or MIT-compatible. The "satstreamr" +name and logo are not covered by the MIT grant and are reserved by the +author. diff --git a/signaling/package.json b/signaling/package.json index ecfd4bd..f544ed0 100644 --- a/signaling/package.json +++ b/signaling/package.json @@ -2,6 +2,7 @@ "name": "satstreamr-signaling", "version": "1.0.0", "private": true, + "license": "MIT", "scripts": { "build": "tsc", "start": "node dist/server.js",