package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-directory-picker-native",
  3. "description": "Native directory-picker surface: the renderless workspace directory-flow occupant driving the host's OS chooser",
  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/client/ui-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. "./client": {
  26. "types": "./lib/types/client/index.d.ts",
  27. "default": "./lib/client.js"
  28. },
  29. "./src/*": "./src/*",
  30. "./package.json": "./package.json"
  31. },
  32. "dsh": {
  33. "client": {
  34. "inject": [
  35. "@deepseek-ai/dsh-client-ui-renderer",
  36. "@deepseek-ai/dsh-client-ui-workspace"
  37. ],
  38. "platform": "web"
  39. }
  40. },
  41. "scripts": {
  42. "bundle": "tsdown",
  43. "watch": "tsdown --watch"
  44. },
  45. "license": "MIT",
  46. "peerDependencies": {
  47. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^",
  48. "@deepseek-ai/dsh-client-ui-workspace": "workspace:^",
  49. "@deepseek-ai/dsh-invariants": "workspace:^",
  50. "@deepseek-ai/cordis": "workspace:^"
  51. },
  52. "devDependencies": {
  53. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^",
  54. "@deepseek-ai/dsh-client-ui-workspace": "workspace:^",
  55. "@deepseek-ai/dsh-invariants": "workspace:^",
  56. "@testing-library/react": "^16.1.0",
  57. "@types/react": "~18.3.1",
  58. "@deepseek-ai/cordis": "workspace:^",
  59. "react": "^18.2.0",
  60. "react-dom": "^18.2.0"
  61. },
  62. "files": [
  63. "lib/index.js",
  64. "lib/invariant.js",
  65. "lib/client.js",
  66. "lib/types/**/*.d.ts"
  67. ]
  68. }