codex-flows/apps/flow-runner/package.json
matamune e68b8adfb9
Some checks failed
ci / check (push) Failing after 16s
Add flow runtime and Codex release flows
2026-05-13 02:42:13 +00:00

24 lines
539 B
JSON

{
"name": "codex-flow-runner",
"version": "0.1.0",
"description": "CLI for listing, firing, and running Codex flow packages.",
"type": "module",
"private": true,
"license": "Apache-2.0",
"bin": {
"codex-flow-runner": "./src/index.ts"
},
"scripts": {
"build": "tsc --noEmit",
"check:types": "tsc --noEmit",
"test": "bun test test/*.test.ts"
},
"dependencies": {
"@peezy.tech/flow-runtime": "workspace:*"
},
"devDependencies": {
"@types/bun": "catalog:",
"@types/node": "catalog:",
"typescript": "catalog:"
}
}