From 890db7dafe9d0cd02f3064e83b81cc5532445a6a Mon Sep 17 00:00:00 2001 From: Simon Farshid Date: Mon, 17 Jun 2024 23:18:01 -0700 Subject: [PATCH] fix: add homepage and repository to packages (#229) --- packages/cli/package.json | 13 +++++++++---- packages/react-hook-form/package.json | 8 ++++++++ 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index 6ff8d50d3..e735ef2ba 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -34,10 +34,7 @@ "tsup": "^8.1.0", "tsx": "^4.15.6" }, - "files": [ - "dist", - "README.md" - ], + "files": ["dist", "README.md"], "bin": "./dist/index.js", "scripts": { "build": "tsup src/index.ts --format esm --sourcemap", @@ -47,5 +44,13 @@ "publishConfig": { "access": "public", "provenance": true + }, + "homepage": "https://assistant-ui.com/", + "repository": { + "type": "git", + "url": "git+https://github.com/Yonom/assistant-ui.git" + }, + "bugs": { + "url": "https://github.com/Yonom/assistant-ui/issues" } } diff --git a/packages/react-hook-form/package.json b/packages/react-hook-form/package.json index 1622b4ddd..f8ce1890f 100644 --- a/packages/react-hook-form/package.json +++ b/packages/react-hook-form/package.json @@ -28,5 +28,13 @@ "publishConfig": { "access": "public", "provenance": true + }, + "homepage": "https://assistant-ui.com/", + "repository": { + "type": "git", + "url": "git+https://github.com/Yonom/assistant-ui.git" + }, + "bugs": { + "url": "https://github.com/Yonom/assistant-ui/issues" } }