package.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. {
  2. "name": "@deepseek-ai/dsh-agent-spine-demo",
  3. "description": "The default executor-less/UI-less agent spine with fallback session titles, provider-routed retry, and optional persisted goals",
  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. "peerDependencies": {
  28. "@cordisjs/plugin-timer": "^1.1.2",
  29. "@deepseek-ai/dsh-agent": "^0.0.1",
  30. "@deepseek-ai/dsh-agent-loop": "^0.0.1",
  31. "@deepseek-ai/dsh-goal": "^0.0.1",
  32. "@deepseek-ai/dsh-goal-session": "^0.0.1",
  33. "@deepseek-ai/dsh-invariants": "^0.0.1",
  34. "@deepseek-ai/dsh-llm": "^0.0.1",
  35. "@deepseek-ai/dsh-paths": "^0.0.1",
  36. "@deepseek-ai/dsh-llm-retry": "^0.0.1",
  37. "@deepseek-ai/dsh-scope": "^0.0.1",
  38. "@deepseek-ai/dsh-session": "^0.0.1",
  39. "@deepseek-ai/dsh-session-title": "^0.0.1",
  40. "@deepseek-ai/dsh-skill": "^0.0.1",
  41. "@deepseek-ai/dsh-skill-local": "^0.0.1",
  42. "@deepseek-ai/dsh-system-prompt": "^0.0.1",
  43. "@deepseek-ai/dsh-tasks-local": "^0.0.1",
  44. "@deepseek-ai/dsh-bash-env": "^0.0.1",
  45. "@deepseek-ai/dsh-tool-bash": "^0.0.1",
  46. "@deepseek-ai/dsh-tool-goal": "^0.0.1",
  47. "@deepseek-ai/dsh-tool-skill": "^0.0.1",
  48. "@deepseek-ai/dsh-tool-tasks": "^0.0.1",
  49. "@deepseek-ai/dsh-tools": "^0.0.1",
  50. "@deepseek-ai/dsh-workspace-context": "^0.0.1",
  51. "cordis": "^4.0.0-rc.7"
  52. },
  53. "devDependencies": {
  54. "@cordisjs/plugin-timer": "workspace:^",
  55. "@deepseek-ai/dsh-agent": "workspace:^",
  56. "@deepseek-ai/dsh-agent-loop": "workspace:^",
  57. "@deepseek-ai/dsh-bash-env": "workspace:^",
  58. "@deepseek-ai/dsh-bash-local": "workspace:^",
  59. "@deepseek-ai/dsh-bash-sandbox": "workspace:^",
  60. "@deepseek-ai/dsh-fs-local": "workspace:^",
  61. "@deepseek-ai/dsh-fs-policy": "workspace:^",
  62. "@deepseek-ai/dsh-fs-sandbox": "workspace:^",
  63. "@deepseek-ai/dsh-goal": "workspace:^",
  64. "@deepseek-ai/dsh-goal-session": "workspace:^",
  65. "@deepseek-ai/dsh-invariants": "workspace:^",
  66. "@deepseek-ai/dsh-llm": "workspace:^",
  67. "@deepseek-ai/dsh-paths": "workspace:^",
  68. "@deepseek-ai/dsh-llm-retry": "workspace:^",
  69. "@deepseek-ai/dsh-subprocess-local": "workspace:^",
  70. "@deepseek-ai/dsh-sandbox-local": "workspace:^",
  71. "@deepseek-ai/dsh-sandbox-policy": "workspace:^",
  72. "@deepseek-ai/dsh-scope": "workspace:^",
  73. "@deepseek-ai/dsh-session": "workspace:^",
  74. "@deepseek-ai/dsh-session-title": "workspace:^",
  75. "@deepseek-ai/dsh-skill": "workspace:^",
  76. "@deepseek-ai/dsh-skill-local": "workspace:^",
  77. "@deepseek-ai/dsh-system-prompt": "workspace:^",
  78. "@deepseek-ai/dsh-tasks": "workspace:^",
  79. "@deepseek-ai/dsh-tasks-local": "workspace:^",
  80. "@deepseek-ai/dsh-tool-bash": "workspace:^",
  81. "@deepseek-ai/dsh-tool-fs": "workspace:^",
  82. "@deepseek-ai/dsh-tool-goal": "workspace:^",
  83. "@deepseek-ai/dsh-tool-skill": "workspace:^",
  84. "@deepseek-ai/dsh-tool-tasks": "workspace:^",
  85. "@deepseek-ai/dsh-tools": "workspace:^",
  86. "@deepseek-ai/dsh-workspace-context": "workspace:^",
  87. "node-addon-landlock-run": "0.0.0-test.0",
  88. "cordis": "^4.0.0-rc.7"
  89. },
  90. "dependencies": {
  91. "schemastery": "^3.18.0"
  92. }
  93. }