package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@deepseek-ai/dsh-hooks-codex",
  3. "description": "Bridge plugin: run a Codex hooks.json hook config on the DeepSeek Harness interception seams",
  4. "version": "0.1.1-rc.2",
  5. "publishConfig": {
  6. "access": "public"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/hooks/hooks-codex"
  12. },
  13. "type": "module",
  14. "main": "lib/index.js",
  15. "types": "lib/types/index.d.ts",
  16. "exports": {
  17. ".": {
  18. "types": "./lib/types/index.d.ts",
  19. "default": "./lib/index.js"
  20. },
  21. "./invariant": {
  22. "types": "./lib/types/invariant.d.ts",
  23. "default": "./lib/invariant.js"
  24. },
  25. "./src/*": "./src/*",
  26. "./package.json": "./package.json"
  27. },
  28. "files": [
  29. "lib/index.js",
  30. "lib/invariant.js",
  31. "lib/types/**/*.d.ts"
  32. ],
  33. "license": "MIT",
  34. "dependencies": {
  35. "@deepseek-ai/schemastery": "workspace:^"
  36. },
  37. "peerDependencies": {
  38. "@deepseek-ai/dsh-agent": "workspace:^",
  39. "@deepseek-ai/dsh-hook-protocol": "workspace:^",
  40. "@deepseek-ai/dsh-invariants": "workspace:^",
  41. "@deepseek-ai/dsh-llm": "workspace:^",
  42. "@deepseek-ai/dsh-session": "workspace:^",
  43. "@deepseek-ai/dsh-session-persistence": "workspace:^",
  44. "@deepseek-ai/dsh-tools": "workspace:^",
  45. "@deepseek-ai/cordis": "workspace:^"
  46. },
  47. "devDependencies": {
  48. "@deepseek-ai/dsh-agent": "workspace:^",
  49. "@deepseek-ai/dsh-agent-loop": "workspace:^",
  50. "@deepseek-ai/dsh-agent-loop-testkit": "workspace:^",
  51. "@deepseek-ai/dsh-shell": "workspace:^",
  52. "@deepseek-ai/dsh-bash-local": "workspace:^",
  53. "@deepseek-ai/dsh-subprocess-local": "workspace:^",
  54. "@deepseek-ai/dsh-hook-protocol": "workspace:^",
  55. "@deepseek-ai/dsh-invariants": "workspace:^",
  56. "@deepseek-ai/dsh-llm": "workspace:^",
  57. "@deepseek-ai/dsh-session": "workspace:^",
  58. "@deepseek-ai/dsh-session-persistence": "workspace:^",
  59. "@deepseek-ai/dsh-session-persistence-jsonl": "workspace:^",
  60. "@deepseek-ai/dsh-tools": "workspace:^",
  61. "@deepseek-ai/cordis": "workspace:^"
  62. }
  63. }