chore(package.json): script cleanup and addition of preRelease script

This commit is contained in:
2025-08-31 14:29:21 +02:00
parent 93716ba3f8
commit 1ea099ff98

View File

@@ -60,11 +60,13 @@
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"check": "pnpm lint && pnpm typecheck",
"check": "pnpm run lint && pnpm run typecheck",
"clean": "shx rm -rf dist/",
"docs:generate": "typedoc",
"format:check": "prettier --check .",
"lint": "eslint --cache .",
"prepare": "husky",
"prepublishOnly": "pnpm run clean && pnpm run build",
"test": "jest",
"typecheck": "tsc --noEmit"
},