chore: move build tools to devDependencies, shared deps to peerDependencies

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.
This commit is contained in:
saberzero1 2026-03-14 21:27:30 +01:00
parent 1da1254ac7
commit 740ca9ae12
No known key found for this signature in database

View file

@ -59,9 +59,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",
@ -74,7 +72,9 @@
"preact": "^10.28.2",
"prettier": "^3.6.2",
"sass": "^1.97.3",
"vitest": "^2.1.9"
"vitest": "^2.1.9",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22",