package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.1.1-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-native"
  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. "./invariant": {
  22. "types": "./lib/types/invariant.d.ts",
  23. "default": "./lib/invariant.js"
  24. },
  25. "./worker": {
  26. "types": "./lib/types/win32-dialog-worker.d.ts",
  27. "default": "./lib/worker.cjs"
  28. },
  29. "./src/*": "./src/*",
  30. "./package.json": "./package.json"
  31. },
  32. "files": [
  33. "lib/index.js",
  34. "lib/invariant.js",
  35. "lib/worker.cjs",
  36. "lib/types/**/*.d.ts"
  37. ],
  38. "license": "MIT",
  39. "dependencies": {
  40. "@deepseek-ai/dsh-host-directory-picker": "workspace:^",
  41. "@deepseek-ai/dsh-native-command": "workspace:^",
  42. "koffi": "^3.1.0"
  43. },
  44. "peerDependencies": {
  45. "@deepseek-ai/dsh-invariants": "workspace:^",
  46. "@deepseek-ai/cordis": "workspace:^"
  47. },
  48. "devDependencies": {
  49. "@deepseek-ai/dsh-invariants": "workspace:^",
  50. "@deepseek-ai/cordis": "workspace:^",
  51. "tsx": "^4.19.2"
  52. }
  53. }