codex-flows/apps/cli/package.json

25 lines
533 B
JSON
Raw Permalink Normal View History

2026-05-12 15:15:09 +00:00
{
"name": "codex-app-cli",
"version": "0.1.0",
"description": "CLI for sending JSON-RPC commands to a running Codex app-server.",
"type": "module",
"private": true,
"license": "Apache-2.0",
"bin": {
"codex-app": "./src/index.ts"
},
"scripts": {
"build": "tsc --noEmit",
"check:types": "tsc --noEmit",
"test": "bun test test/*.test.ts"
},
"dependencies": {
2026-05-12 15:34:46 +00:00
"@peezy.tech/codex-flows": "workspace:*"
2026-05-12 15:15:09 +00:00
},
"devDependencies": {
"@types/bun": "catalog:",
"@types/node": "catalog:",
"typescript": "catalog:"
}
}