UNPKG

@yu-orz/mcp-codex-cli

Version:

MCP server wrapper for OpenAI's CodeX CLI

71 lines (70 loc) 1.93 kB
{ "name": "@yu-orz/mcp-codex-cli", "version": "1.0.4", "description": "MCP server wrapper for OpenAI's CodeX CLI", "author": "Yuki", "license": "MIT", "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "bin": { "mcp-codex-cli": "./dist/index.js" }, "files": [ "dist" ], "keywords": [ "mcp", "model-context-protocol", "codex", "codex-cli", "openai", "ai", "llm" ], "repository": { "type": "git", "url": "git+https://github.com/yu-orz/mcp-codex-cli.git" }, "peerDependencies": { "typescript": "^5" }, "scripts": { "start": "bun run index.ts", "dev": "bun --watch run index.ts", "build": "rm -rf dist && bun build --target=node --banner=$'#!/usr/bin/env node\\n' --outdir=dist --sourcemap index.ts && chmod +x dist/index.js", "prepublishOnly": "bun run build && bun run test && bun run lint", "build:prod": "rm -rf dist && bun build --target=node --banner=$'#!/usr/bin/env node\\n' --outdir=dist --minify --sourcemap=none index.ts && chmod +x dist/index.js", "lint": "biome lint .", "lint:fix": "biome lint --write .", "format": "biome format --write .", "test": "bun test", "test:watch": "bun test --watch", "test:coverage": "bun test --coverage", "test:e2e": "bun test tests/mcp-integration.test.ts", "test:unit": "bun test tools/ index.test.ts" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "commander": "^12.0.0" }, "devDependencies": { "@biomejs/biome": "^2.0.0", "@types/node": "^22.0.0", "typescript": "^5.0.0" }, "engines": { "node": ">=20.0.0" }, "directories": { "test": "tests" }, "bugs": { "url": "https://github.com/yu-orz/mcp-codex-cli/issues" }, "homepage": "https://github.com/yu-orz/mcp-codex-cli#readme", "publishConfig": { "access": "public" } }