1
0

package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. ],
  31. "license": "BSD-3-Clause",
  32. "peerDependencies": {
  33. "@deepseek-ai/dsh-agent": "^0.0.1",
  34. "@deepseek-ai/dsh-brand": "^0.0.1",
  35. "@deepseek-ai/dsh-invariants": "^0.0.1",
  36. "@deepseek-ai/dsh-scope": "^0.0.1",
  37. "@deepseek-ai/dsh-session": "^0.0.1",
  38. "cordis": "^4.0.0-rc.7"
  39. },
  40. "devDependencies": {
  41. "@deepseek-ai/dsh-agent": "workspace:^",
  42. "@deepseek-ai/dsh-brand": "workspace:^",
  43. "@deepseek-ai/dsh-invariants": "workspace:^",
  44. "@deepseek-ai/dsh-scope": "workspace:^",
  45. "@deepseek-ai/dsh-session": "workspace:^",
  46. "cordis": "^4.0.0-rc.7"
  47. }
  48. }