package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@deepseek-ai/dsh-host-directory-picker-native",
  3. "description": "Native-OS-chooser backend of the directory-picker seam 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. "./client": {
  19. "types": "./lib/types/client/index.d.ts",
  20. "default": "./lib/client.js"
  21. },
  22. "./worker": {
  23. "types": "./lib/types/win32-dialog-worker.d.ts",
  24. "default": "./lib/worker.cjs"
  25. },
  26. "./src/*": "./src/*",
  27. "./package.json": "./package.json"
  28. },
  29. "files": [
  30. "lib/index.js",
  31. "lib/invariant.js",
  32. "lib/worker.cjs",
  33. "lib/client.js",
  34. "lib/types/**/*.d.ts"
  35. ],
  36. "license": "BSD-3-Clause",
  37. "dependencies": {
  38. "@deepseek-ai/dsh-host-directory-picker": "workspace:^",
  39. "@deepseek-ai/dsh-native-command": "workspace:^",
  40. "koffi": "^3.1.0"
  41. },
  42. "peerDependencies": {
  43. "@deepseek-ai/dsh-client-runtime": "^0.0.1",
  44. "@deepseek-ai/dsh-client-ui-slots": "^0.0.1",
  45. "@deepseek-ai/dsh-client-ui-workspace": "^0.0.1",
  46. "@deepseek-ai/dsh-invariants": "^0.0.1",
  47. "cordis": "^4.0.0-rc.7",
  48. "react": "^18.2.0"
  49. },
  50. "devDependencies": {
  51. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  52. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  53. "@deepseek-ai/dsh-client-ui-workspace": "workspace:^",
  54. "@deepseek-ai/dsh-invariants": "workspace:^",
  55. "@types/react": "~18.3.1",
  56. "cordis": "^4.0.0-rc.7",
  57. "react": "^18.2.0",
  58. "tsx": "^4.19.2"
  59. },
  60. "dshClient": {
  61. "inject": [
  62. "@deepseek-ai/dsh-client-runtime",
  63. "@deepseek-ai/dsh-client-ui-workspace"
  64. ],
  65. "platform": "web"
  66. }
  67. }