package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. ],
  31. "license": "BSD-3-Clause",
  32. "peerDependencies": {
  33. "@deepseek-ai/dsh-agent": "^0.0.1",
  34. "@deepseek-ai/dsh-invariants": "^0.0.1",
  35. "@deepseek-ai/dsh-llm": "^0.0.1",
  36. "cordis": "^4.0.0-rc.7"
  37. },
  38. "devDependencies": {
  39. "@deepseek-ai/dsh-agent": "workspace:^",
  40. "@deepseek-ai/dsh-invariants": "workspace:^",
  41. "@deepseek-ai/dsh-llm": "workspace:^",
  42. "cordis": "^4.0.0-rc.7"
  43. }
  44. }