package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "@deepseek-ai/dsh-session-title-first-message-llm",
  3. "description": "First-message LLM provider plugin for DeepSeek Harness session titles",
  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. "./package.json": "./package.json"
  15. },
  16. "files": ["lib/index.js", "lib/types/**/*.d.ts", "lib/types/**/*.d.ts.map", "src"],
  17. "license": "BSD-3-Clause",
  18. "peerDependencies": {
  19. "@deepseek-ai/dsh-llm": "^0.0.1",
  20. "@deepseek-ai/dsh-session-title": "^0.0.1",
  21. "@deepseek-ai/dsh-session-title-llm": "^0.0.1",
  22. "cordis": "^4.0.0-rc.7"
  23. },
  24. "dependencies": {
  25. "schemastery": "^3.18.0"
  26. },
  27. "devDependencies": {
  28. "@cordisjs/plugin-include": "workspace:^",
  29. "@cordisjs/plugin-loader": "workspace:^",
  30. "@deepseek-ai/dsh-llm": "workspace:^",
  31. "@deepseek-ai/dsh-llm-deepseek": "workspace:^",
  32. "@deepseek-ai/dsh-session": "workspace:^",
  33. "@deepseek-ai/dsh-session-title": "workspace:^",
  34. "@deepseek-ai/dsh-session-title-llm": "workspace:^",
  35. "cordis": "^4.0.0-rc.7"
  36. }
  37. }