package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@deepseek-ai/dsh-lsp-stdio",
  3. "description": "Generic stdio language-server provider for the DeepSeek Harness LSP capability seam (ctx.lsp) — spawns configured servers, translates JSON-RPC, and serves transient-open goToDefinition/findReferences/goToImplementation/hover queries in the host filesystem namespace",
  4. "version": "0.1.5-rc.2",
  5. "publishConfig": {
  6. "access": "public"
  7. },
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  11. "directory": "packages/lsp/lsp-stdio"
  12. },
  13. "type": "module",
  14. "main": "lib/index.js",
  15. "types": "lib/types/index.d.ts",
  16. "exports": {
  17. ".": {
  18. "types": "./lib/types/index.d.ts",
  19. "default": "./lib/index.js"
  20. },
  21. "./src/*": "./src/*",
  22. "./package.json": "./package.json"
  23. },
  24. "files": [
  25. "lib/index.js",
  26. "lib/types/**/*.d.ts"
  27. ],
  28. "license": "MIT",
  29. "peerDependencies": {
  30. "@deepseek-ai/cordis": "workspace:^",
  31. "@deepseek-ai/dsh-brand": "workspace:^",
  32. "@deepseek-ai/dsh-fs": "workspace:^",
  33. "@deepseek-ai/dsh-llm": "workspace:^",
  34. "@deepseek-ai/dsh-lsp": "workspace:^",
  35. "@deepseek-ai/dsh-subprocess": "workspace:^",
  36. "@deepseek-ai/dsh-timeout": "workspace:^"
  37. },
  38. "dependencies": {
  39. "@deepseek-ai/dsh-util-values": "workspace:^",
  40. "@deepseek-ai/schemastery": "workspace:^"
  41. },
  42. "devDependencies": {
  43. "@deepseek-ai/cordis": "workspace:^",
  44. "@deepseek-ai/dsh-brand": "workspace:^",
  45. "@deepseek-ai/dsh-fs": "workspace:^",
  46. "@deepseek-ai/dsh-fs-local": "workspace:^",
  47. "@deepseek-ai/dsh-llm": "workspace:^",
  48. "@deepseek-ai/dsh-lsp": "workspace:^",
  49. "@deepseek-ai/dsh-subprocess": "workspace:^",
  50. "@deepseek-ai/dsh-subprocess-local": "workspace:^",
  51. "@deepseek-ai/dsh-timeout": "workspace:^",
  52. "typescript": "^6.0.3",
  53. "typescript-language-server": "^5.0.0"
  54. }
  55. }