package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@deepseek-ai/dsh-helper",
  3. "description": "Domain model and infrastructure for creating and editing DeepSeek Harness SDK projects",
  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. },
  19. "files": [
  20. "lib/index.js",
  21. "lib/invariant.js",
  22. "lib/assets",
  23. "lib/types/**/*.d.ts"
  24. ],
  25. "license": "BSD-3-Clause",
  26. "dependencies": {
  27. "@clack/core": "^1.4.3",
  28. "@clack/prompts": "^1.7.0",
  29. "handlebars": "^4.7.9",
  30. "jsonc-parser": "^3.3.1",
  31. "yaml": "^2.9.0"
  32. },
  33. "peerDependencies": {
  34. "@deepseek-ai/dsh-brand": "^0.0.1",
  35. "@deepseek-ai/dsh-invariants": "^0.0.1",
  36. "@deepseek-ai/dsh-subprocess": "^0.0.1",
  37. "cordis": "^4.0.0-rc.7"
  38. },
  39. "devDependencies": {
  40. "@deepseek-ai/dsh-brand": "workspace:^",
  41. "@deepseek-ai/dsh-hooks-claude": "workspace:^",
  42. "@deepseek-ai/dsh-hooks-codex": "workspace:^",
  43. "@deepseek-ai/dsh-invariants": "workspace:^",
  44. "@deepseek-ai/dsh-session-persistence-jsonl": "workspace:^",
  45. "@deepseek-ai/dsh-session-persistence-sqlite": "workspace:^",
  46. "@deepseek-ai/dsh-subprocess": "workspace:^",
  47. "@deepseek-ai/dsh-tool-subagent": "workspace:^",
  48. "@deepseek-ai/dsh-tool-web": "workspace:^",
  49. "cordis": "^4.0.0-rc.7"
  50. }
  51. }