package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "@deepseek-ai/dsh-commands",
  3. "description": "Plugin-owned human command registry for DeepSeek Harness UIs",
  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/interaction/commands"
  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. "./brand": {
  30. "types": "./lib/types/brand.d.ts",
  31. "default": "./lib/types/brand.js"
  32. },
  33. "./typert": {
  34. "types": "./lib/typert.host.d.ts",
  35. "default": "./lib/typert.host.js"
  36. },
  37. "./remote": {
  38. "types": "./lib/typert.remote-client.d.ts",
  39. "default": "./lib/typert.remote-client.js"
  40. },
  41. "./src/*": "./src/*",
  42. "./package.json": "./package.json"
  43. },
  44. "files": [
  45. "lib/index.js",
  46. "lib/invariant.js",
  47. "lib/types/**/*.js",
  48. "lib/types/**/*.d.ts",
  49. "lib/typert.host.js",
  50. "lib/typert.host.d.ts",
  51. "lib/typert.remote-client.js",
  52. "lib/typert.remote-client.d.ts"
  53. ],
  54. "license": "MIT",
  55. "peerDependencies": {
  56. "@deepseek-ai/dsh-agent": "workspace:^",
  57. "@deepseek-ai/dsh-attachment": "workspace:^",
  58. "@deepseek-ai/dsh-brand": "workspace:^",
  59. "@deepseek-ai/dsh-invariants": "workspace:^",
  60. "@deepseek-ai/dsh-llm": "workspace:^",
  61. "@deepseek-ai/dsh-scope": "workspace:^",
  62. "@deepseek-ai/dsh-session": "workspace:^",
  63. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  64. "@deepseek-ai/cordis": "workspace:^"
  65. },
  66. "dependencies": {
  67. "@deepseek-ai/dsh-util-crypto": "workspace:^",
  68. "zod": "^4.4.3"
  69. },
  70. "devDependencies": {
  71. "@deepseek-ai/dsh-agent": "workspace:^",
  72. "@deepseek-ai/dsh-attachment": "workspace:^",
  73. "@deepseek-ai/dsh-brand": "workspace:^",
  74. "@deepseek-ai/dsh-invariants": "workspace:^",
  75. "@deepseek-ai/dsh-llm": "workspace:^",
  76. "@deepseek-ai/dsh-scope": "workspace:^",
  77. "@deepseek-ai/dsh-session": "workspace:^",
  78. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  79. "@deepseek-ai/cordis": "workspace:^"
  80. }
  81. }