package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "@deepseek-ai/dsh-tool-pty",
  3. "description": "Six model-facing persistent PTY tools with owner isolation and generic background-task integration",
  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. "./src/*": "./src/*",
  19. "./package.json": "./package.json"
  20. },
  21. "files": [
  22. "lib/index.js",
  23. "lib/invariant.js",
  24. "lib/types/**/*.d.ts"
  25. ],
  26. "license": "BSD-3-Clause",
  27. "dependencies": {
  28. "schemastery": "^3.18.0"
  29. },
  30. "peerDependencies": {
  31. "@deepseek-ai/dsh-agent": "^0.0.1",
  32. "@deepseek-ai/dsh-invariants": "^0.0.1",
  33. "@deepseek-ai/dsh-llm": "^0.0.1",
  34. "@deepseek-ai/dsh-pty": "^0.0.1",
  35. "@deepseek-ai/dsh-retention": "^0.0.1",
  36. "@deepseek-ai/dsh-system-prompt": "^0.0.1",
  37. "@deepseek-ai/dsh-tasks": "^0.0.1",
  38. "@deepseek-ai/dsh-tools": "^0.0.1",
  39. "cordis": "^4.0.0-rc.7"
  40. },
  41. "devDependencies": {
  42. "@cordisjs/plugin-include": "workspace:^",
  43. "@cordisjs/plugin-loader": "workspace:^",
  44. "@deepseek-ai/dsh-agent": "workspace:^",
  45. "@deepseek-ai/dsh-invariants": "workspace:^",
  46. "@deepseek-ai/dsh-llm": "workspace:^",
  47. "@deepseek-ai/dsh-pty": "workspace:^",
  48. "@deepseek-ai/dsh-pty-local": "workspace:^",
  49. "@deepseek-ai/dsh-retention": "workspace:^",
  50. "@deepseek-ai/dsh-sandbox": "workspace:^",
  51. "@deepseek-ai/dsh-sandbox-policy": "workspace:^",
  52. "@deepseek-ai/dsh-session": "workspace:^",
  53. "@deepseek-ai/dsh-system-prompt": "workspace:^",
  54. "@deepseek-ai/dsh-tasks": "workspace:^",
  55. "@deepseek-ai/dsh-tasks-local": "workspace:^",
  56. "@deepseek-ai/dsh-tool-tasks": "workspace:^",
  57. "@deepseek-ai/dsh-tools": "workspace:^",
  58. "cordis": "^4.0.0-rc.7"
  59. }
  60. }