package.json 1021 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@bodicsek/codex-app-server-bridge",
  3. "version": "0.1.1",
  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/cli.js",
  13. "dist/config.js",
  14. "README.md",
  15. "LICENSE"
  16. ],
  17. "scripts": {
  18. "typecheck": "tsc --project tsconfig.json",
  19. "compile": "tsc --project tsconfig.build.json",
  20. "test": "npm run compile && node --test --test-concurrency=1 test/*.test.ts",
  21. "verify:runtime": "node scripts/verify-generated-runtime.mjs",
  22. "verify:git-package": "node scripts/verify-git-package.mjs",
  23. "verify:package": "node scripts/verify-packed-package.mjs",
  24. "pack:verified": "npm run compile && npm test && npm run verify:runtime && npm pack --ignore-scripts"
  25. },
  26. "engines": {
  27. "node": ">=24"
  28. },
  29. "devDependencies": {
  30. "@types/node": "24.13.3",
  31. "typescript": "7.0.2"
  32. }
  33. }