3a927de63f
- Enhanced Biome config with test file override for noConsole - Applied Biome auto-fixes (8 files: formatting, template literals, optional chains) - Updated all package repository URLs to git.shazhou.work/uncaged/workflow.git - Added workflow-agent-claude-code to publish order in scripts/publish-all.mjs - Added --ignore-scripts flag to publish command to bypass prepublishOnly guard - Installed vitest in root devDependencies for test infrastructure - Created vitest.config.ts for all 8 packages with passWithNoTests: true - Fixed 3 test files to use vitest imports instead of bun:test - Added test and test:ci scripts to packages missing them - Added missing build step to .gitea/workflows/ci.yml - Renamed CI job from 'test' to 'check' for clarity - Created workflows/solve-issue.yaml with TDD-driven issue resolution workflow - Registered solve-issue workflow with uwf (hash: 084YVM60BR8G6) - Added packageManager: bun@1.3.14 to root package.json - Added preinstall guard to block npm/pnpm/yarn - Added prepublishOnly guard to root and all 7 public packages Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
43 lines
1.4 KiB
JSON
43 lines
1.4 KiB
JSON
{
|
|
"name": "@uncaged/workflow-monorepo",
|
|
"private": true,
|
|
"packageManager": "bun@1.3.14",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"uwf": "bun packages/cli-workflow/src/cli.ts",
|
|
"preinstall": "npx only-allow bun",
|
|
"prepublishOnly": "echo 'Use bun run release instead' && exit 1",
|
|
"build": "bunx tsc --build",
|
|
"check": "bunx tsc --build && biome check . && bash scripts/lint-log-tags.sh",
|
|
"typecheck": "bunx tsc --build",
|
|
"format": "biome format --write .",
|
|
"test": "bun run --filter './packages/*' test",
|
|
"test:ci": "bun run --filter './packages/*' test:ci",
|
|
"changeset": "bunx changeset",
|
|
"version": "bunx changeset version",
|
|
"release": "bun run build && bun run test && node scripts/publish-all.mjs"
|
|
},
|
|
"devDependencies": {
|
|
"@agentclientprotocol/sdk": "^0.22.1",
|
|
"@biomejs/biome": "^2.4.14",
|
|
"@changesets/cli": "^2.31.0",
|
|
"@types/node": "^25.7.0",
|
|
"@types/xxhashjs": "^0.2.4",
|
|
"@uncaged/workflow-agent-hermes": "workspace:*",
|
|
"bun-types": "^1.3.13",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^4.1.7"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/shazhou-ww/uncaged-workflow.git"
|
|
},
|
|
"homepage": "https://github.com/shazhou-ww/uncaged-workflow#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/shazhou-ww/uncaged-workflow/issues"
|
|
},
|
|
"license": "MIT"
|
|
}
|