patch.moi/package.json

47 lines
1.7 KiB
JSON

{
"name": "patch-moi",
"version": "0.1.0",
"description": "Git-first maintenance control plane for upstream patch stacks.",
"private": true,
"type": "module",
"packageManager": "bun@1.3.11",
"engines": {
"bun": ">=1.3.11"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"docs"
],
"catalog": {
"@tomehq/cli": "^0.8.1",
"@tomehq/theme": "^0.8.1",
"@types/bun": "latest",
"@types/node": "^22.10.10",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"typescript": "^5.9.3"
}
},
"scripts": {
"build": "bun run --filter @peezy.tech/patch build && bun run --filter @peezy.tech/patch-docs build",
"check": "bun run check:types && bun run test",
"check:types": "bun run --workspaces check:types",
"dev": "bun run --filter @peezy.tech/patch dev",
"docs:build": "bun run --filter @peezy.tech/patch-docs build",
"docs:deploy": "bun run --filter @peezy.tech/patch-docs deploy",
"docs:dev": "bun run --filter @peezy.tech/patch-docs dev",
"harness:flow": "bun run --filter @peezy.tech/patch harness:flow",
"start": "bun run --filter @peezy.tech/patch start",
"test": "bun run --filter @peezy.tech/patch test",
"workspace:doctor": "codex-flows workspace doctor --workspace-root .",
"workspace:run:harness": "codex-flows workspace run harness-maintenance-fixture --workspace-root . --mode local",
"workspace:run:harness-flow": "codex-flows workspace run harness-maintenance-flow-smoke --workspace-root . --mode local",
"workspace:tick": "codex-flows workspace tick --workspace-root . --mode local"
},
"devDependencies": {
"@peezy.tech/codex-flows": "^0.3.4",
"@peezy.tech/flow-runtime": "^0.4.0"
}
}