package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@deepseek-ai/dsh-host-directory-picker-auto",
  3. "description": "Adaptive chooser of the directory-picker seam: resolves the host situation at boot and mounts the native or browse backend for the DeepSeek Harness web GUI host",
  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/host/directory-picker-auto"
  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/cordis-plugin-loader": "workspace:^",
  32. "@deepseek-ai/dsh-client-ui-directory-picker-browse": "workspace:^",
  33. "@deepseek-ai/dsh-client-ui-directory-picker-native": "workspace:^",
  34. "@deepseek-ai/dsh-host-directory-picker-browse": "workspace:^",
  35. "@deepseek-ai/dsh-host-directory-picker-native": "workspace:^",
  36. "@deepseek-ai/dsh-host-webserver": "workspace:^"
  37. },
  38. "devDependencies": {
  39. "@deepseek-ai/cordis": "workspace:^",
  40. "@deepseek-ai/cordis-plugin-include": "workspace:^",
  41. "@deepseek-ai/cordis-plugin-loader": "workspace:^",
  42. "@deepseek-ai/dsh-client-ui-directory-picker-browse": "workspace:^",
  43. "@deepseek-ai/dsh-client-ui-directory-picker-native": "workspace:^",
  44. "@deepseek-ai/dsh-host-directory-picker": "workspace:^",
  45. "@deepseek-ai/dsh-host-directory-picker-browse": "workspace:^",
  46. "@deepseek-ai/dsh-host-directory-picker-native": "workspace:^",
  47. "@deepseek-ai/dsh-host-webserver": "workspace:^"
  48. },
  49. "dependencies": {
  50. "@deepseek-ai/dsh-launch-environment": "workspace:^"
  51. }
  52. }