From 687a0be7bfa71e06619b63b8706c2f7b60d6ed4c Mon Sep 17 00:00:00 2001 From: Ariel Gentile Date: Fri, 18 Oct 2024 13:20:09 -0300 Subject: [PATCH] fix: client git path (#14) Signed-off-by: Ariel Gentile --- package.json | 8 ++++++-- packages/client/package.json | 6 ++++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 4a762cd..96c4071 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,17 @@ { "name": "message-pickup-repository", "version": "0.0.1", - "description": "", - "author": "", + "description": "DIDComm Message Pickup Repository", + "author": "2060.io", "private": true, "license": "Apache-2.0", "workspaces": [ "packages/*" ], + "repository": { + "url": "https://github.com/2060-io/message-pickup-repository", + "type": "git" + }, "scripts": { "check-types": "yarn check-types:build", "check-types:build": "yarn workspaces run tsc --noEmit -p tsconfig.build.json", diff --git a/packages/client/package.json b/packages/client/package.json index 00c94b3..21303cb 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -8,6 +8,12 @@ "files": [ "build" ], + "homepage": "https://github.com/2060-io/message-pickup-repository/tree/main/packages/client", + "repository": { + "type": "git", + "url": "https://github.com/2060-io/message-pickup-repository", + "directory": "packages/client" + }, "scripts": { "build": "yarn run clean && yarn run compile", "clean": "rimraf -rf ./build",