From 86618a2628f5e9b3b410776d2a3ad3f472f30660 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sat, 8 Jun 2024 04:33:07 +0900 Subject: [PATCH] fix(cli): update package.json meta information This commit updates the homepage and repository URLs in the package.json file for the cli package. It also cleans up some unnecessary scripts in the "scripts" block. --- packages/cli/package.json | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index e0c0432..aa018a9 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -43,7 +43,7 @@ "/dist", "/oclif.manifest.json" ], - "homepage": "https://github.com/p-sw/ui", + "homepage": "https://ui.psw.kr", "keywords": [ "oclif" ], @@ -64,13 +64,10 @@ } } }, - "repository": "p-sw/ui", + "repository": "pswui/ui", "scripts": { "build": "shx rm -rf dist && tsc", - "lint": "eslint . --ext .ts", - "postpack": "shx rm -f oclif.manifest.json", - "prepack": "oclif manifest && oclif readme", - "version": "oclif readme && git add README.md" + "lint": "eslint . --ext .ts" }, "types": "dist/index.d.ts" }