package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "name": "@deepseek-ai/dsh-plugin-manager",
  3. "description": "Current-profile plugin and bundle management shared by dsh CLI, Web and agent tools",
  4. "version": "0.1.5-rc.2",
  5. "publishConfig": {
  6. "access": "public"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/boot/plugin-manager"
  12. },
  13. "type": "module",
  14. "main": "lib/index.js",
  15. "types": "lib/types/index.d.ts",
  16. "exports": {
  17. ".": {
  18. "types": "./lib/types/index.d.ts",
  19. "default": "./lib/index.js"
  20. },
  21. "./types": {
  22. "types": "./lib/types/types.d.ts",
  23. "default": "./lib/types/types.js"
  24. },
  25. "./typert": {
  26. "types": "./lib/typert.host.d.ts",
  27. "default": "./lib/typert.host.js"
  28. },
  29. "./remote": {
  30. "types": "./lib/typert.remote-client.d.ts",
  31. "default": "./lib/typert.remote-client.js"
  32. },
  33. "./src/*": "./src/*",
  34. "./package.json": "./package.json",
  35. "./operations": {
  36. "types": "./lib/types/operations.d.ts",
  37. "default": "./lib/types/operations.js"
  38. },
  39. "./tools": {
  40. "types": "./lib/types/tools.d.ts",
  41. "default": "./lib/types/tools.js"
  42. }
  43. },
  44. "files": [
  45. "lib/index.js",
  46. "lib/types/**/*.js",
  47. "lib/types/**/*.d.ts",
  48. "lib/typert.host.js",
  49. "lib/typert.host.d.ts",
  50. "lib/typert.remote-client.js",
  51. "lib/typert.remote-client.d.ts"
  52. ],
  53. "license": "MIT",
  54. "dependencies": {
  55. "@deepseek-ai/dsh-app-boot": "workspace:^",
  56. "@deepseek-ai/dsh-atomic-write": "workspace:^",
  57. "@deepseek-ai/schemastery": "workspace:^",
  58. "execa": "^10.0.0",
  59. "yaml": "^2.9.0",
  60. "zod": "^4.4.3",
  61. "@deepseek-ai/dsh-util-values": "workspace:^"
  62. },
  63. "peerDependencies": {
  64. "@deepseek-ai/cordis": "workspace:^",
  65. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  66. "@deepseek-ai/dsh-agent": "workspace:^",
  67. "@deepseek-ai/dsh-host-plugin-inventory": "workspace:^",
  68. "@deepseek-ai/dsh-llm": "workspace:^",
  69. "@deepseek-ai/dsh-subprocess": "workspace:^",
  70. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  71. "@deepseek-ai/dsh-tools": "workspace:^",
  72. "@deepseek-ai/dsh-hmr": "workspace:^"
  73. },
  74. "peerDependenciesMeta": {
  75. "@deepseek-ai/dsh-agent": {
  76. "optional": true
  77. },
  78. "@deepseek-ai/dsh-hmr": {
  79. "optional": true
  80. }
  81. },
  82. "devDependencies": {
  83. "@deepseek-ai/cordis": "workspace:^",
  84. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  85. "@deepseek-ai/dsh-agent": "workspace:^",
  86. "@deepseek-ai/dsh-host-plugin-inventory": "workspace:^",
  87. "@deepseek-ai/dsh-llm": "workspace:^",
  88. "@deepseek-ai/dsh-subprocess": "workspace:^",
  89. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  90. "@deepseek-ai/dsh-tools": "workspace:^",
  91. "@deepseek-ai/dsh-system-prompt": "workspace:^",
  92. "@deepseek-ai/dsh-session": "workspace:^",
  93. "@deepseek-ai/dsh-hmr": "workspace:^",
  94. "@deepseek-ai/cordis-plugin-timer": "workspace:^"
  95. }
  96. }