From 51f712583999a3933ea94e2007034919d412fbc0 Mon Sep 17 00:00:00 2001
From: mattfsourcecode <24415914+mattfsourcecode@users.noreply.github.com>
Date: Tue, 12 Nov 2024 17:27:18 -0500
Subject: [PATCH] Add third-party licenses (#10)
---
README.md | 13 +++++++++
package.json | 2 +-
third_party_licenses/BSD-3-Clause-License.txt | 29 +++++++++++++++++++
third_party_licenses/ISC-License.txt | 15 ++++++++++
4 files changed, 58 insertions(+), 1 deletion(-)
create mode 100644 third_party_licenses/BSD-3-Clause-License.txt
create mode 100644 third_party_licenses/ISC-License.txt
diff --git a/README.md b/README.md
index 6db339f..8e435a6 100644
--- a/README.md
+++ b/README.md
@@ -32,6 +32,19 @@ Replace `[project-name]` with the intended name for the project. This creates a
+## Licensing
+
+This project is licensed under the MIT License.
+
+### Third-Party Licenses
+
+The repository uses some third-party dependencies under other licenses:
+
+- BSD-3-Clause
+- ISC
+
+The full texts of these licenses are included in the repository.
+
## Contributions and Issues
Contributions are welcome! If you have ideas for improvements, please open an issue first for discussion before submitting a pull request.
diff --git a/package.json b/package.json
index 7f47914..9b21d7b 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "fastify-swc-typescript-server-bootstrap-cli",
- "version": "1.0.15",
+ "version": "1.0.16",
"description": "CLI tool that accelerates the creation of new server projects using Fastify with SWC and Jest",
"main": "init.js",
"license": "MIT",
diff --git a/third_party_licenses/BSD-3-Clause-License.txt b/third_party_licenses/BSD-3-Clause-License.txt
new file mode 100644
index 0000000..c0e706b
--- /dev/null
+++ b/third_party_licenses/BSD-3-Clause-License.txt
@@ -0,0 +1,29 @@
+BSD 3-Clause License
+
+Copyright (c) 2012, Artur Adib
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+* Neither the name of the copyright holder nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
diff --git a/third_party_licenses/ISC-License.txt b/third_party_licenses/ISC-License.txt
new file mode 100644
index 0000000..d99824f
--- /dev/null
+++ b/third_party_licenses/ISC-License.txt
@@ -0,0 +1,15 @@
+The ISC License
+
+Copyright (c) 2011-2023 Isaac Z. Schlueter and Contributors
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
\ No newline at end of file