From dc3a94bdea6148d62f317a4d89ce348a5616e1f1 Mon Sep 17 00:00:00 2001 From: "frontend-dev-bot[bot]" Date: Fri, 24 Apr 2026 02:06:47 -0500 Subject: [PATCH] chore: add LICENSE file and expand README license section Add a standard MIT LICENSE file at the repo root, declare "license": "MIT" in frontend/package.json, and expand the README license section to note that third-party dependencies retain their own licenses and that the "satstreamr" name is reserved by the author. Co-Authored-By: Claude Opus 4.7 --- LICENSE | 21 +++++++++++++++++++++ README.md | 7 ++++++- frontend/package.json | 1 + 3 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 LICENSE 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 eb0c278..a0774b6 100644 --- a/README.md +++ b/README.md @@ -311,4 +311,9 @@ The Python virtual environment has not been created. See Step 2 for the `python3 ## License -MIT +satstreamr 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/frontend/package.json b/frontend/package.json index 8430aea..eb67e7a 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -2,6 +2,7 @@ "name": "satstreamr-frontend", "version": "0.2.0", "private": true, + "license": "MIT", "scripts": { "dev": "vite", "build": "tsc && vite build",