package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. "lib/types/**/*.d.ts.map",
  25. "src"
  26. ],
  27. "license": "BSD-3-Clause",
  28. "dependencies": {
  29. "@clack/core": "^1.4.3",
  30. "@clack/prompts": "^1.7.0",
  31. "handlebars": "^4.7.9",
  32. "jsonc-parser": "^3.3.1",
  33. "yaml": "^2.9.0"
  34. },
  35. "peerDependencies": {
  36. "@deepseek-ai/dsh-brand": "^0.0.1",
  37. "@deepseek-ai/dsh-invariants": "^0.0.1",
  38. "@deepseek-ai/dsh-subprocess": "^0.0.1",
  39. "cordis": "^4.0.0-rc.7"
  40. },
  41. "devDependencies": {
  42. "@deepseek-ai/dsh-brand": "workspace:^",
  43. "@deepseek-ai/dsh-hooks-claude": "workspace:^",
  44. "@deepseek-ai/dsh-hooks-codex": "workspace:^",
  45. "@deepseek-ai/dsh-invariants": "workspace:^",
  46. "@deepseek-ai/dsh-session-persistence-jsonl": "workspace:^",
  47. "@deepseek-ai/dsh-session-persistence-sqlite": "workspace:^",
  48. "@deepseek-ai/dsh-subprocess": "workspace:^",
  49. "@deepseek-ai/dsh-tool-subagent": "workspace:^",
  50. "@deepseek-ai/dsh-tool-web": "workspace:^",
  51. "cordis": "^4.0.0-rc.7"
  52. }
  53. }