package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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.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. "@cordisjs/plugin-loader": "^1.0.0-rc.5",
  29. "@deepseek-ai/dsh-host-directory-picker-browse": "^0.0.1",
  30. "@deepseek-ai/dsh-host-directory-picker-native": "^0.0.1",
  31. "@deepseek-ai/dsh-host-webserver": "^0.0.1",
  32. "@deepseek-ai/dsh-invariants": "^0.0.1",
  33. "cordis": "^4.0.0-rc.7"
  34. },
  35. "devDependencies": {
  36. "@cordisjs/plugin-include": "workspace:^",
  37. "@cordisjs/plugin-loader": "workspace:^",
  38. "@deepseek-ai/dsh-host-directory-picker": "workspace:^",
  39. "@deepseek-ai/dsh-host-directory-picker-browse": "workspace:^",
  40. "@deepseek-ai/dsh-host-directory-picker-native": "workspace:^",
  41. "@deepseek-ai/dsh-host-webserver": "workspace:^",
  42. "@deepseek-ai/dsh-invariants": "workspace:^",
  43. "cordis": "^4.0.0-rc.7"
  44. }
  45. }