package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@bodicsek/codex-chief-of-staff",
  3. "version": "0.1.1",
  4. "private": true,
  5. "license": "UNLICENSED",
  6. "description": "Read-only MCP monitor for threads visible through a shared Codex App Server",
  7. "type": "module",
  8. "bin": {
  9. "codex-chief-of-staff": "dist/src/index.js"
  10. },
  11. "files": [
  12. "dist/src",
  13. "README.md"
  14. ],
  15. "engines": {
  16. "node": ">=24 <25"
  17. },
  18. "scripts": {
  19. "compile": "tsc -p tsconfig.json",
  20. "typecheck": "tsc -p tsconfig.json --noEmit",
  21. "test": "npm run compile && node --test dist/test/*.test.js",
  22. "start": "node dist/src/index.js",
  23. "smoke": "npm run compile && node dist/src/smoke.js",
  24. "verify:runtime": "node scripts/verify-generated-runtime.mjs",
  25. "verify:git-package": "node scripts/verify-git-package.mjs",
  26. "verify:package": "node scripts/verify-packed-package.mjs",
  27. "pack:verified": "npm run compile && npm test && npm run verify:runtime && npm pack --ignore-scripts"
  28. },
  29. "dependencies": {
  30. "@modelcontextprotocol/sdk": "1.30.0"
  31. },
  32. "devDependencies": {
  33. "@types/node": "24.13.3",
  34. "typescript": "7.0.2"
  35. }
  36. }