package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "@deepseek-ai/dsh-host-plugin-manager",
  3. "description": "The plugins Remote of the Web host: pluginManager as a Typert service that relays each call to the shared plugin manager and maps its failures onto Remote error codes",
  4. "version": "0.1.5-alpha.1",
  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/host/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. },
  36. "files": [
  37. "lib/index.js",
  38. "lib/types/**/*.js",
  39. "lib/types/**/*.d.ts",
  40. "lib/typert.host.js",
  41. "lib/typert.host.d.ts",
  42. "lib/typert.remote-client.js",
  43. "lib/typert.remote-client.d.ts"
  44. ],
  45. "license": "MIT",
  46. "dependencies": {
  47. "@deepseek-ai/schemastery": "workspace:^",
  48. "zod": "^4.4.3"
  49. },
  50. "peerDependencies": {
  51. "@deepseek-ai/cordis": "workspace:^",
  52. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  53. "@deepseek-ai/dsh-agent": "workspace:^",
  54. "@deepseek-ai/dsh-agent-presets": "workspace:^",
  55. "@deepseek-ai/dsh-app-boot": "workspace:^",
  56. "@deepseek-ai/dsh-plugin-manager": "workspace:^",
  57. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  58. "@deepseek-ai/dsh-util-values": "workspace:^"
  59. },
  60. "peerDependenciesMeta": {
  61. "@deepseek-ai/dsh-agent-presets": {
  62. "optional": true
  63. }
  64. },
  65. "devDependencies": {
  66. "@deepseek-ai/cordis": "workspace:^",
  67. "@deepseek-ai/cordis-plugin-group": "workspace:^",
  68. "@deepseek-ai/cordis-plugin-include": "workspace:^",
  69. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  70. "@deepseek-ai/dsh-agent": "workspace:^",
  71. "@deepseek-ai/dsh-agent-presets": "workspace:^",
  72. "@deepseek-ai/dsh-app-boot": "workspace:^",
  73. "@deepseek-ai/dsh-plugin-manager": "workspace:^",
  74. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  75. "@deepseek-ai/dsh-util-values": "workspace:^"
  76. }
  77. }