package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@deepseek-ai/dsh-user-interaction",
  3. "description": "Abstract user-interaction seam (ctx.userInteraction) for asking the human during agent runs",
  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. "./invariant": {
  15. "types": "./lib/types/invariant.d.ts",
  16. "default": "./lib/invariant.js"
  17. },
  18. "./types": {
  19. "types": "./lib/types/types.d.ts",
  20. "default": "./lib/types/types.js"
  21. },
  22. "./src/*": "./src/*",
  23. "./package.json": "./package.json"
  24. },
  25. "files": [
  26. "lib/index.js",
  27. "lib/invariant.js",
  28. "lib/types/**/*.js",
  29. "lib/types/**/*.d.ts",
  30. "lib/types/**/*.d.ts.map",
  31. "src"
  32. ],
  33. "license": "BSD-3-Clause",
  34. "peerDependencies": {
  35. "@deepseek-ai/dsh-agent": "^0.0.1",
  36. "@deepseek-ai/dsh-invariants": "^0.0.1",
  37. "@deepseek-ai/dsh-llm": "^0.0.1",
  38. "cordis": "^4.0.0-rc.7"
  39. },
  40. "devDependencies": {
  41. "@deepseek-ai/dsh-agent": "workspace:^",
  42. "@deepseek-ai/dsh-invariants": "workspace:^",
  43. "@deepseek-ai/dsh-llm": "workspace:^",
  44. "cordis": "^4.0.0-rc.7"
  45. }
  46. }