package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "@deepseek-ai/dsh-client-ui-jobs",
  3. "description": "Session-header background-job list: live registry state mirrored from session/jobs frames",
  4. "version": "0.1.0-rc.6",
  5. "type": "module",
  6. "main": "lib/index.js",
  7. "types": "lib/types/index.d.ts",
  8. "exports": {
  9. ".": {
  10. "types": "./lib/types/index.d.ts",
  11. "default": "./lib/index.js"
  12. },
  13. "./invariant": {
  14. "types": "./lib/types/invariant.d.ts",
  15. "default": "./lib/invariant.js"
  16. },
  17. "./client": {
  18. "types": "./lib/types/client/index.d.ts",
  19. "default": "./lib/client.js"
  20. },
  21. "./src/*": "./src/*",
  22. "./package.json": "./package.json"
  23. },
  24. "dsh": {
  25. "client": {
  26. "inject": [
  27. "@deepseek-ai/dsh-client-locale",
  28. "@deepseek-ai/dsh-client-runtime",
  29. "@deepseek-ai/dsh-client-ui-conversation",
  30. "@deepseek-ai/dsh-client-ui-primitives"
  31. ],
  32. "platform": "web"
  33. }
  34. },
  35. "scripts": {
  36. "bundle": "tsdown",
  37. "watch": "tsdown --watch"
  38. },
  39. "license": "MIT",
  40. "repository": {
  41. "type": "git",
  42. "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
  43. "directory": "packages/client/ui-jobs"
  44. },
  45. "publishConfig": {
  46. "access": "public"
  47. },
  48. "dependencies": {
  49. "react": "^18.2.0"
  50. },
  51. "peerDependencies": {
  52. "@deepseek-ai/dsh-client-locale": "workspace:^",
  53. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  54. "@deepseek-ai/dsh-client-ui-conversation": "workspace:^",
  55. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  56. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  57. "@deepseek-ai/dsh-invariants": "workspace:^",
  58. "@deepseek-ai/cordis": "workspace:^"
  59. },
  60. "devDependencies": {
  61. "@deepseek-ai/dsh-client-locale": "workspace:^",
  62. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  63. "@deepseek-ai/dsh-client-test-runtime": "workspace:^",
  64. "@deepseek-ai/dsh-client-ui-conversation": "workspace:^",
  65. "@deepseek-ai/dsh-client-ui-primitives": "workspace:^",
  66. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  67. "@deepseek-ai/dsh-invariants": "workspace:^",
  68. "@types/react": "~18.3.1",
  69. "@deepseek-ai/cordis": "workspace:^"
  70. },
  71. "files": [
  72. "lib/index.js",
  73. "lib/invariant.js",
  74. "lib/client.js",
  75. "lib/types/**/*.d.ts"
  76. ]
  77. }