package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@deepseek-ai/dsh-commands",
  3. "description": "Plugin-owned human command registry for DeepSeek Harness UI surfaces",
  4. "version": "0.0.1",
  5. "private": true,
  6. "type": "module",
  7. "main": "lib/index.js",
  8. "types": "lib/types/index.d.ts",
  9. "exports": {
  10. ".": {
  11. "types": "./lib/types/index.d.ts",
  12. "default": "./lib/index.js"
  13. },
  14. "./invariant": {
  15. "types": "./lib/types/invariant.d.ts",
  16. "default": "./lib/invariant.js"
  17. },
  18. "./brand": {
  19. "types": "./lib/types/brand.d.ts",
  20. "default": "./lib/types/brand.js"
  21. },
  22. "./src/*": "./src/*",
  23. "./package.json": "./package.json"
  24. },
  25. "files": [
  26. "lib/index.js",
  27. "lib/invariant.js",
  28. "lib/types/**/*.js",
  29. "lib/types/**/*.d.ts",
  30. "lib/types/**/*.d.ts.map",
  31. "src"
  32. ],
  33. "license": "BSD-3-Clause",
  34. "peerDependencies": {
  35. "@deepseek-ai/dsh-agent": "^0.0.1",
  36. "@deepseek-ai/dsh-brand": "^0.0.1",
  37. "@deepseek-ai/dsh-invariants": "^0.0.1",
  38. "@deepseek-ai/dsh-scope": "^0.0.1",
  39. "@deepseek-ai/dsh-session": "^0.0.1",
  40. "cordis": "^4.0.0-rc.7"
  41. },
  42. "devDependencies": {
  43. "@deepseek-ai/dsh-agent": "workspace:^",
  44. "@deepseek-ai/dsh-brand": "workspace:^",
  45. "@deepseek-ai/dsh-invariants": "workspace:^",
  46. "@deepseek-ai/dsh-scope": "workspace:^",
  47. "@deepseek-ai/dsh-session": "workspace:^",
  48. "cordis": "^4.0.0-rc.7"
  49. }
  50. }