package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@deepseek-ai/dsh-tool-call-timeout-policy",
  3. "description": "Tool-call timeout policy: a tools/execute wrapper that arms a per-tool deadline on exec.signal and returns TOOL_TIMEOUT when it wins",
  4. "version": "0.1.5-alpha.1",
  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/guard/timeout-policy"
  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. "./src/*": "./src/*",
  22. "./package.json": "./package.json"
  23. },
  24. "files": [
  25. "lib/index.js",
  26. "lib/types/**/*.d.ts"
  27. ],
  28. "license": "MIT",
  29. "peerDependencies": {
  30. "@deepseek-ai/dsh-llm": "workspace:^",
  31. "@deepseek-ai/dsh-timeout": "workspace:^",
  32. "@deepseek-ai/dsh-tools": "workspace:^",
  33. "@deepseek-ai/cordis": "workspace:^"
  34. },
  35. "devDependencies": {
  36. "@deepseek-ai/dsh-llm": "workspace:^",
  37. "@deepseek-ai/dsh-timeout": "workspace:^",
  38. "@deepseek-ai/dsh-tools": "workspace:^",
  39. "@deepseek-ai/cordis": "workspace:^"
  40. }
  41. }