{
  "private": true,
  "name": "<projectName>",
  "infra": "monorepo",
  "scripts": {
    "build": "packemon build-workspace",
    "check": "yarn run type && yarn run test && yarn run lint",
    "coverage": "yarn run test --coverage",
    "format": "prettier --write ./<packagesFolder>",
    "lint": "eslint --cache --fix ./<packagesFolder>",
    "pack": "packemon pack-workspace --addEngines --declaration",
    "prelease": "yarn run pack && yarn run check",
    "release": "echo 'Customize your own release script!'",
    "test": "vitest",
    "type": "tsc --build"
  },
  "workspaces": [
    "<packagesFolder>/*"
  ]
}
