patch.moi/apps/patch/package.json
matamune 81ea91e387
Some checks failed
check / check (push) Failing after 3s
Adopt codex-flows 0.3.5 surfaces
2026-05-18 00:07:15 +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.3.5"
},
"devDependencies": {
"@types/bun": "catalog:",
"typescript": "catalog:"
}
}