26 lines
629 B
JSON
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:"
|
|
}
|
|
}
|