From 2f1844e7e92f4e2b07aaff6f9e2a9641b2bd9d47 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Tue, 2 Aug 2022 12:30:15 +0200 Subject: [PATCH] Added `monorepo` metadata to package.json - we need this so our tooling can add new packages with the correct scope and visibility - this mimics the metadata used by Lerna --- package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package.json b/package.json index fe8561894a..60e0b379cf 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,11 @@ "workspaces": [ "ghost/*" ], + "monorepo": { + "public": false, + "repo": "https://github.com/TryGhost/Ghost", + "scope": "@tryghost" + }, "eslintIgnore": [ "**/node_modules/**" ],