package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-reference",
  3. "description": "Unified Web @file and @session reference source",
  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-reference"
  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-api-remotes",
  36. "@deepseek-ai/dsh-client-locale",
  37. "@deepseek-ai/dsh-client-ui-input-trigger"
  38. ],
  39. "platform": "web"
  40. }
  41. },
  42. "scripts": {
  43. "bundle": "tsdown",
  44. "watch": "tsdown --watch"
  45. },
  46. "license": "MIT",
  47. "peerDependencies": {
  48. "@deepseek-ai/dsh-api-remotes": "workspace:^",
  49. "@deepseek-ai/dsh-client-locale": "workspace:^",
  50. "@deepseek-ai/dsh-client-ui-input-trigger": "workspace:^",
  51. "@deepseek-ai/dsh-file-reference": "workspace:^",
  52. "@deepseek-ai/dsh-invariants": "workspace:^",
  53. "@deepseek-ai/dsh-session-reference": "workspace:^",
  54. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  55. "@deepseek-ai/cordis": "workspace:^"
  56. },
  57. "devDependencies": {
  58. "@deepseek-ai/dsh-api-remotes": "workspace:^",
  59. "@deepseek-ai/dsh-client-locale": "workspace:^",
  60. "@deepseek-ai/dsh-client-ui-input-trigger": "workspace:^",
  61. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  62. "@deepseek-ai/dsh-file-reference": "workspace:^",
  63. "@deepseek-ai/dsh-invariants": "workspace:^",
  64. "@deepseek-ai/dsh-session-reference": "workspace:^",
  65. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  66. "@deepseek-ai/cordis": "workspace:^"
  67. },
  68. "files": [
  69. "lib/index.js",
  70. "lib/invariant.js",
  71. "lib/client.js",
  72. "lib/types/**/*.d.ts"
  73. ]
  74. }