From f52fe5335f7f028bb2e379b892ca88b1a8bcebab Mon Sep 17 00:00:00 2001 From: saberzero1 Date: Sat, 14 Mar 2026 21:26:41 +0100 Subject: [PATCH] chore: move build tools to devDependencies, shared deps to peerDependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit tsup and typescript are only needed at build time — move to devDependencies so they can be pruned after build. Dependencies already available from the host Quartz installation are moved to peerDependencies to avoid duplication. --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index b909f0b..a3e470d 100644 --- a/package.json +++ b/package.json @@ -64,9 +64,7 @@ } }, "dependencies": { - "@quartz-community/types": "github:quartz-community/types", - "tsup": "^8.5.0", - "typescript": "^5.9.3" + "@quartz-community/types": "github:quartz-community/types" }, "devDependencies": { "@types/hast": "^3.0.4", @@ -78,7 +76,9 @@ "eslint-config-prettier": "^9.1.0", "preact": "^10.28.2", "prettier": "^3.6.2", - "vitest": "^2.1.9" + "vitest": "^2.1.9", + "tsup": "^8.5.0", + "typescript": "^5.9.3" }, "engines": { "node": ">=22",