package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-open-in-app",
  3. "description": "Web Session-header \"Open In...\" split button opening the session workspace directory in a locally installed application",
  4. "version": "0.1.6-alpha.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-open-in-app"
  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. "./client": {
  22. "types": "./lib/types/client/index.d.ts",
  23. "default": "./lib/client.js"
  24. },
  25. "./src/*": "./src/*",
  26. "./package.json": "./package.json"
  27. },
  28. "files": [
  29. "lib/index.js",
  30. "lib/client.js",
  31. "lib/types/**/*.d.ts"
  32. ],
  33. "scripts": {
  34. "bundle": "tsdown",
  35. "watch": "tsdown --watch"
  36. },
  37. "license": "MIT",
  38. "dsh": {
  39. "client": {
  40. "inject": [
  41. "@deepseek-ai/dsh-client-locale",
  42. "@deepseek-ai/dsh-client-ui-conversation",
  43. "@deepseek-ai/dsh-client-ui-renderer",
  44. "@deepseek-ai/dsh-client-ui-session"
  45. ],
  46. "platform": "web"
  47. }
  48. },
  49. "peerDependencies": {
  50. "@deepseek-ai/cordis": "workspace:^"
  51. },
  52. "devDependencies": {
  53. "@deepseek-ai/cordis": "workspace:^",
  54. "@deepseek-ai/dsh-api-session-controller": "workspace:^",
  55. "@deepseek-ai/dsh-client-locale": "workspace:^",
  56. "@deepseek-ai/dsh-client-store": "workspace:^",
  57. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  58. "@deepseek-ai/dsh-client-ui-conversation": "workspace:^",
  59. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  60. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^",
  61. "@deepseek-ai/dsh-client-ui-session": "workspace:^",
  62. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  63. "@deepseek-ai/dsh-host-open-in-app": "workspace:^",
  64. "@deepseek-ai/dsh-session": "workspace:^",
  65. "@types/react": "~18.3.1",
  66. "react": "^18.2.0"
  67. }
  68. }