package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@deepseek-ai/dsh-tool-lsp",
  3. "description": "Model-facing lsp tool over the DeepSeek Harness LSP capability seam (ctx.lsp) — one read-only tool with goToDefinition/findReferences/goToImplementation/hover operations, one-based UTF-16 cursor coordinates, bounded location rendering, and hover normalization",
  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. "./src/*": "./src/*",
  19. "./package.json": "./package.json"
  20. },
  21. "files": [
  22. "lib/index.js",
  23. "lib/invariant.js",
  24. "lib/types/**/*.d.ts"
  25. ],
  26. "license": "BSD-3-Clause",
  27. "peerDependencies": {
  28. "@deepseek-ai/dsh-invariants": "^0.0.1",
  29. "@deepseek-ai/dsh-llm": "^0.0.1",
  30. "@deepseek-ai/dsh-lsp": "^0.0.1",
  31. "@deepseek-ai/dsh-system-prompt": "^0.0.1",
  32. "@deepseek-ai/dsh-timeout": "^0.0.1",
  33. "@deepseek-ai/dsh-tools": "^0.0.1",
  34. "cordis": "^4.0.0-rc.7"
  35. },
  36. "dependencies": {
  37. "schemastery": "^3.18.0"
  38. },
  39. "devDependencies": {
  40. "@deepseek-ai/dsh-agent": "workspace:^",
  41. "@deepseek-ai/dsh-invariants": "workspace:^",
  42. "@deepseek-ai/dsh-llm": "workspace:^",
  43. "@deepseek-ai/dsh-lsp": "workspace:^",
  44. "@deepseek-ai/dsh-lsp-local": "workspace:^",
  45. "@deepseek-ai/dsh-session": "workspace:^",
  46. "@deepseek-ai/dsh-system-prompt": "workspace:^",
  47. "@deepseek-ai/dsh-timeout": "workspace:^",
  48. "@deepseek-ai/dsh-timeout-policy": "workspace:^",
  49. "@deepseek-ai/dsh-tools": "workspace:^",
  50. "cordis": "^4.0.0-rc.7"
  51. }
  52. }