package.json 1004 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@deepseek-ai/dsh-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.0.1",
  5. "private": true,
  6. "type": "module",
  7. "main": "lib/index.js",
  8. "types": "lib/types/index.d.ts",
  9. "exports": {
  10. ".": {
  11. "types": "./lib/types/index.d.ts",
  12. "default": "./lib/index.js"
  13. },
  14. "./src/*": "./src/*",
  15. "./package.json": "./package.json"
  16. },
  17. "files": [
  18. "lib/index.js",
  19. "lib/types/**/*.d.ts",
  20. "lib/types/**/*.d.ts.map",
  21. "src"
  22. ],
  23. "license": "BSD-3-Clause",
  24. "peerDependencies": {
  25. "@deepseek-ai/dsh-llm": "^0.0.1",
  26. "@deepseek-ai/dsh-timeout": "^0.0.1",
  27. "@deepseek-ai/dsh-tools": "^0.0.1",
  28. "cordis": "^4.0.0-rc.7"
  29. },
  30. "devDependencies": {
  31. "@deepseek-ai/dsh-llm": "workspace:^",
  32. "@deepseek-ai/dsh-timeout": "workspace:^",
  33. "@deepseek-ai/dsh-tools": "workspace:^",
  34. "cordis": "^4.0.0-rc.7"
  35. }
  36. }