- scripts/setup.sh: Checks for pnpm, installs via corepack/npm if missing - package.json: Updated to call bash script instead of node directly - README.md: Updated with better quick start and troubleshooting
12 lines
307 B
JSON
12 lines
307 B
JSON
{
|
|
"name": "workflow-template",
|
|
"version": "1.0.0",
|
|
"description": "Standard issue-based workflow template for teams",
|
|
"private": true,
|
|
"scripts": {
|
|
"setup": "bash scripts/setup.sh",
|
|
"validate:issues": "node .hooks/issue-linter.js",
|
|
"test": "echo \"Add your test commands here\""
|
|
}
|
|
}
|