patch.moi/apps/patch/package.json
matamune e7a85c5bcf
Some checks failed
check / check (push) Failing after 11s
feat: add patch moi maintenance cli
2026-05-16 20:12:50 +00:00

26 lines
630 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/flow-runtime": "^0.4.0"
},
"devDependencies": {
"@types/bun": "catalog:",
"typescript": "catalog:"
}
}