25 lines
533 B
JSON
25 lines
533 B
JSON
|
|
{
|
||
|
|
"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": {
|
||
|
|
"@peezy-tech/codex-flows": "workspace:*"
|
||
|
|
},
|
||
|
|
"devDependencies": {
|
||
|
|
"@types/bun": "catalog:",
|
||
|
|
"@types/node": "catalog:",
|
||
|
|
"typescript": "catalog:"
|
||
|
|
}
|
||
|
|
}
|