From 33192be4b9b27aad5c777265f8985d429847cdac Mon Sep 17 00:00:00 2001 From: Jason Kurian Date: Wed, 7 Jun 2023 22:12:16 -0400 Subject: [PATCH] fix: add license field & make typescript a dev dep --- LICENSE.md | 21 +++++++++++++++++++++ package.json | 3 ++- pnpm-lock.yaml | 4 +++- 3 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 LICENSE.md diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..ec58eef --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Jason Kurian + +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/package.json b/package.json index 8622968..5d27f7b 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,7 @@ "name": "@jakxz/tw-classnames", "module": "index.ts", "version": "1.0.0", + "license": "MIT", "publishConfig": { "access": "public" }, @@ -12,7 +13,7 @@ "scripts": { "build": "tsc" }, - "peerDependencies": { + "devDependencies": { "typescript": ">=4" }, "dependencies": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a2c109b..cbcddbc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -11,6 +11,8 @@ dependencies: tailwind-merge: specifier: ^1.13.0 version: 1.13.0 + +devDependencies: typescript: specifier: '>=4' version: 5.0.4 @@ -30,4 +32,4 @@ packages: resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} engines: {node: '>=12.20'} hasBin: true - dev: false + dev: true