package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@deepseek-ai/dsh-host-plugin-inventory",
  3. "description": "Read-only Remote projection of current Cordis Loader plugin state",
  4. "version": "0.1.3-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-inventory"
  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. "zod": "^4.4.3"
  48. },
  49. "peerDependencies": {
  50. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  51. "@deepseek-ai/dsh-agent-presets": "workspace:^",
  52. "@deepseek-ai/dsh-brand": "workspace:^",
  53. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  54. "@deepseek-ai/cordis": "workspace:^"
  55. },
  56. "peerDependenciesMeta": {
  57. "@deepseek-ai/dsh-agent-presets": {
  58. "optional": true
  59. }
  60. },
  61. "devDependencies": {
  62. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  63. "@deepseek-ai/dsh-agent-presets": "workspace:^",
  64. "@deepseek-ai/dsh-brand": "workspace:^",
  65. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  66. "@deepseek-ai/cordis": "workspace:^"
  67. }
  68. }