From 8b24e66ca81064cb4e00a09f91c808757c8b250f Mon Sep 17 00:00:00 2001 From: Luca8991 Date: Wed, 18 Oct 2023 13:22:26 +0200 Subject: [PATCH] chore: add license, update readme --- LICENSE | 21 +++++++++++++++++++++ README.md | 4 +--- package-lock.json | 1 + package.json | 1 + 4 files changed, 24 insertions(+), 3 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..1cd525d --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Omnia Team + +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. \ No newline at end of file diff --git a/README.md b/README.md index 52e74e9..e625edb 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,6 @@ This repository contains the Rust implementation of IC WebSocket CDK. For more information about IC Websockets, see [IC WebSocket Gateway](https://github.com/omnia-network/ic-websocket-gateway). -> ⚠️ This library is still in development and is not ready for production use. Expect breaking changes. - # Installation You can install the library using npm: @@ -30,7 +28,7 @@ npm test ## License -TODO: Add a license +MIT License. See [LICENSE](./LICENSE). ## Contributing diff --git a/package-lock.json b/package-lock.json index 03ae7e3..8ee47d5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,6 +7,7 @@ "": { "name": "ic-websocket-js", "version": "0.1.1", + "license": "MIT", "dependencies": { "loglevel": "^1.8.1" }, diff --git a/package.json b/package.json index 1a2e5cd..49a5daf 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,7 @@ "name": "ic-websocket-js", "version": "0.1.1", "description": "IC WebSocket on the Internet Computer", + "license": "MIT", "repository": { "type": "git", "url": "https://github.com/omnia-network/ic-websocket-sdk-js"