| 1234567891011121314151617181920212223242526272829 |
- {
- "name": "codex-app-server-bridge",
- "version": "0.1.0",
- "description": "Bridge codex-acp stdio JSONL to an existing loopback Codex App Server WebSocket.",
- "private": true,
- "type": "module",
- "bin": {
- "codex-app-server-bridge": "bin/codex-app-server-bridge.js"
- },
- "files": [
- "bin/",
- "dist/",
- "README.md",
- "LICENSE"
- ],
- "scripts": {
- "typecheck": "tsc --project tsconfig.json",
- "build": "tsc --project tsconfig.build.json",
- "test": "npm run build && node --test --test-concurrency=1 test/*.test.ts",
- "prepack": "npm run build"
- },
- "engines": {
- "node": ">=24"
- },
- "devDependencies": {
- "@types/node": "24.13.3",
- "typescript": "7.0.2"
- }
- }
|