diff --git a/LICENSE.txt b/LICENSE.txt deleted file mode 100644 index e69de29..0000000 diff --git a/dist/dependencies.txt b/dist/bundled-licenses.txt similarity index 95% rename from dist/dependencies.txt rename to dist/bundled-licenses.txt index 44d6ab9..e0bb57b 100644 --- a/dist/dependencies.txt +++ b/dist/bundled-licenses.txt @@ -33,6 +33,38 @@ SOFTWARE. --- +Name: geotiff-tilesource +Version: 2.0.0 +License: null +Private: false +Description: A plugin tilesource for OpenSeadragon that uses geotiff.js to provide serverless access to view compatible local or remote TIFF files +License Copyright: +=== + +MIT License + +Copyright (c) 2022-2024 Thomas Pearce (pearcetm) and contributors + +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. + +--- + Name: xml-utils Version: 1.7.0 License: CC0-1.0 diff --git a/package-lock.json b/package-lock.json index 1a3706f..130c5fb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "geotiff-tilesource", - "version": "0.2.0", + "version": "2.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "geotiff-tilesource", - "version": "0.2.0", + "version": "2.0.0", "dependencies": { "geotiff": "^2.1.2" }, diff --git a/vite.config.js b/vite.config.js index 87ba130..6f3b1bf 100644 --- a/vite.config.js +++ b/vite.config.js @@ -23,15 +23,10 @@ export default defineConfig({ // Base example config from https://github.com/mjeanroy/rollup-plugin-license license({ sourcemap: true, - banner: { - content: { - file: path.join(__dirname, "LICENSE.txt"), - encoding: "utf-8", - }, - }, thirdParty: { - output: path.join(__dirname, "dist", "dependencies.txt"), + output: path.join(__dirname, "dist", "bundled-licenses.txt"), includePrivate: false, + includeSelf:true, }, }), ],