patch.moi/apps/patch/package.json
matamune 5639829747
All checks were successful
check / check (push) Successful in 39s
Add local patch workspace commands
2026-05-18 18:58:36 +00:00

26 lines
629 B
JSON

{
"name": "@peezy.tech/patch",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"patch.moi": "./src/cli.ts"
},
"scripts": {
"build": "tsc --noEmit",
"dev": "bun --watch src/server.ts",
"harness:flow": "bun src/run-harness-flow.ts",
"patch.moi": "bun src/cli.ts",
"start": "bun src/server.ts",
"test": "bun test test/*.test.ts",
"check:types": "tsc --noEmit",
"check": "bun run check:types && bun run test"
},
"dependencies": {
"@peezy.tech/codex-flows": "^0.4.0"
},
"devDependencies": {
"@types/bun": "catalog:",
"typescript": "catalog:"
}
}