package.json 708 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "codex-app-server-bridge",
  3. "version": "0.1.0",
  4. "description": "Bridge codex-acp stdio JSONL to an existing loopback Codex App Server WebSocket.",
  5. "private": true,
  6. "type": "module",
  7. "bin": {
  8. "codex-app-server-bridge": "bin/codex-app-server-bridge.js"
  9. },
  10. "files": [
  11. "bin/",
  12. "dist/",
  13. "README.md",
  14. "LICENSE"
  15. ],
  16. "scripts": {
  17. "typecheck": "tsc --project tsconfig.json",
  18. "build": "tsc --project tsconfig.build.json",
  19. "test": "npm run build && node --test --test-concurrency=1 test/*.test.ts",
  20. "prepack": "npm run build"
  21. },
  22. "engines": {
  23. "node": ">=24"
  24. },
  25. "devDependencies": {
  26. "@types/node": "24.13.3",
  27. "typescript": "7.0.2"
  28. }
  29. }