diff --git a/packages/dapp-kit-react/LICENSE b/packages/dapp-kit-react/LICENSE new file mode 100644 index 00000000..329efe3f --- /dev/null +++ b/packages/dapp-kit-react/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Vechain + +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/packages/dapp-kit-react/package.json b/packages/dapp-kit-react/package.json index 63a615ab..47cec779 100644 --- a/packages/dapp-kit-react/package.json +++ b/packages/dapp-kit-react/package.json @@ -7,6 +7,12 @@ "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", + "files": [ + "dist", + "package.json", + "README.md", + "LICENSE" + ], "scripts": { "build": "tsup src/index.tsx --format esm --dts --external react", "clean": "rm -rf dist .turbo", diff --git a/packages/dapp-kit-ui/package.json b/packages/dapp-kit-ui/package.json index cfe9e5f2..1f4eeb29 100644 --- a/packages/dapp-kit-ui/package.json +++ b/packages/dapp-kit-ui/package.json @@ -14,6 +14,12 @@ "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", + "files": [ + "dist", + "package.json", + "README.md", + "LICENSE" + ], "scripts": { "build": "tsup", "clean": "rm -rf dist .turbo", diff --git a/packages/dapp-kit/LICENSE b/packages/dapp-kit/LICENSE new file mode 100644 index 00000000..329efe3f --- /dev/null +++ b/packages/dapp-kit/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Vechain + +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/packages/dapp-kit/package.json b/packages/dapp-kit/package.json index 3a0c3eba..28f75406 100644 --- a/packages/dapp-kit/package.json +++ b/packages/dapp-kit/package.json @@ -5,6 +5,12 @@ "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", + "files": [ + "dist", + "package.json", + "README.md", + "LICENSE" + ], "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "clean": "rm -rf dist .turbo",