package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. },
  15. "files": [
  16. "lib/index.js",
  17. "lib/assets",
  18. "lib/types/**/*.d.ts",
  19. "lib/types/**/*.d.ts.map",
  20. "src"
  21. ],
  22. "license": "BSD-3-Clause",
  23. "dependencies": {
  24. "@clack/core": "^1.4.3",
  25. "@clack/prompts": "^1.7.0",
  26. "handlebars": "^4.7.9",
  27. "jsonc-parser": "^3.3.1",
  28. "yaml": "^2.9.0"
  29. },
  30. "peerDependencies": {
  31. "@deepseek-ai/dsh-brand": "^0.0.1",
  32. "cordis": "^4.0.0-rc.7"
  33. },
  34. "devDependencies": {
  35. "@deepseek-ai/dsh-brand": "workspace:^",
  36. "@deepseek-ai/dsh-hooks-claude": "workspace:^",
  37. "@deepseek-ai/dsh-hooks-codex": "workspace:^",
  38. "@deepseek-ai/dsh-session-persistence-jsonl": "workspace:^",
  39. "@deepseek-ai/dsh-session-persistence-sqlite": "workspace:^",
  40. "@deepseek-ai/dsh-tool-subagent": "workspace:^",
  41. "@deepseek-ai/dsh-tool-web": "workspace:^",
  42. "cordis": "^4.0.0-rc.7"
  43. }
  44. }