package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@deepseek-ai/dsh-agent-core",
  3. "description": "The default executor-less/UI-less agent spine as one Cordis bundle plugin (timer + llm + sessions + system-prompt + tools + skills + agents + invariants + tool-bash + tool-skill + agent-loop)",
  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. "@cordisjs/plugin-timer": "^1.1.2",
  26. "@deepseek-ai/dsh-agent": "^0.0.1",
  27. "@deepseek-ai/dsh-agent-loop": "^0.0.1",
  28. "@deepseek-ai/dsh-invariants": "^0.0.1",
  29. "@deepseek-ai/dsh-llm": "^0.0.1",
  30. "@deepseek-ai/dsh-session": "^0.0.1",
  31. "@deepseek-ai/dsh-skill": "^0.0.1",
  32. "@deepseek-ai/dsh-skill-local": "^0.0.1",
  33. "@deepseek-ai/dsh-system-prompt": "^0.0.1",
  34. "@deepseek-ai/dsh-tool-bash": "^0.0.1",
  35. "@deepseek-ai/dsh-tool-skill": "^0.0.1",
  36. "@deepseek-ai/dsh-tools": "^0.0.1",
  37. "cordis": "^4.0.0-rc.6"
  38. },
  39. "devDependencies": {
  40. "@cordisjs/plugin-timer": "workspace:^",
  41. "@deepseek-ai/dsh-agent": "workspace:^",
  42. "@deepseek-ai/dsh-agent-loop": "workspace:^",
  43. "@deepseek-ai/dsh-invariants": "workspace:^",
  44. "@deepseek-ai/dsh-llm": "workspace:^",
  45. "@deepseek-ai/dsh-session": "workspace:^",
  46. "@deepseek-ai/dsh-skill": "workspace:^",
  47. "@deepseek-ai/dsh-skill-local": "workspace:^",
  48. "@deepseek-ai/dsh-system-prompt": "workspace:^",
  49. "@deepseek-ai/dsh-tool-bash": "workspace:^",
  50. "@deepseek-ai/dsh-tool-skill": "workspace:^",
  51. "@deepseek-ai/dsh-tools": "workspace:^",
  52. "cordis": "^4.0.0-rc.6"
  53. },
  54. "dependencies": {
  55. "schemastery": "^3.18.0"
  56. }
  57. }