0fbbf37548
- Add link/link:consume/link:unlink scripts to root package.json - Document cross-repo bun link workflow in CLAUDE.md - Fix hardcoded @uncaged/workflow-runtime "^0.1.0" → "*" in init workspace and init template scaffolds (actual version is 0.3.x)
23 lines
588 B
JSON
23 lines
588 B
JSON
{
|
|
"name": "@uncaged/workflow-monorepo",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"build": "bunx tsc --build",
|
|
"check": "bunx tsc --build && biome check .",
|
|
"typecheck": "bunx tsc --build",
|
|
"format": "biome format --write .",
|
|
"test": "bun run --filter '*' test",
|
|
"link": "./scripts/link-all.sh",
|
|
"link:consume": "./scripts/link-all.sh --consume",
|
|
"link:unlink": "./scripts/link-all.sh --unlink"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.14",
|
|
"@types/xxhashjs": "^0.2.4",
|
|
"bun-types": "^1.3.13"
|
|
}
|
|
}
|