24 lines
539 B
JSON
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:"
|
|
}
|
|
}
|