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.1-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/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. "./invariant": {
  22. "types": "./lib/types/invariant.d.ts",
  23. "default": "./lib/invariant.js"
  24. },
  25. "./types": {
  26. "types": "./lib/types/types.d.ts",
  27. "default": "./lib/types/types.js"
  28. },
  29. "./typert": {
  30. "types": "./lib/typert.host.d.ts",
  31. "default": "./lib/typert.host.js"
  32. },
  33. "./remote": {
  34. "types": "./lib/typert.remote-client.d.ts",
  35. "default": "./lib/typert.remote-client.js"
  36. },
  37. "./src/*": "./src/*",
  38. "./package.json": "./package.json"
  39. },
  40. "files": [
  41. "lib/index.js",
  42. "lib/invariant.js",
  43. "lib/types/**/*.js",
  44. "lib/types/**/*.d.ts",
  45. "lib/typert.host.js",
  46. "lib/typert.host.d.ts",
  47. "lib/typert.remote-client.js",
  48. "lib/typert.remote-client.d.ts"
  49. ],
  50. "license": "MIT",
  51. "dependencies": {
  52. "zod": "^4.4.3"
  53. },
  54. "peerDependencies": {
  55. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  56. "@deepseek-ai/dsh-brand": "workspace:^",
  57. "@deepseek-ai/dsh-invariants": "workspace:^",
  58. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  59. "@deepseek-ai/cordis": "workspace:^"
  60. },
  61. "devDependencies": {
  62. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  63. "@deepseek-ai/dsh-brand": "workspace:^",
  64. "@deepseek-ai/dsh-invariants": "workspace:^",
  65. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  66. "@deepseek-ai/cordis": "workspace:^"
  67. }
  68. }