package.json 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "@deepseek-ai/dsh-client-test-runtime",
  3. "description": "jsdom slot test runtime: real Cordis Context + SlotRegistry + UI renderer with test-owned session/workspace doubles for feature specs",
  4. "version": "0.1.3-alpha.1",
  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/test-support/client-runtime"
  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. "./src/*": "./src/*",
  22. "./package.json": "./package.json"
  23. },
  24. "license": "MIT",
  25. "dependencies": {
  26. "@testing-library/dom": "^10.4.1",
  27. "@testing-library/react": "^16.3.2",
  28. "vitest": "^4.1.8"
  29. },
  30. "peerDependencies": {
  31. "@deepseek-ai/dsh-api-session-controller": "workspace:^",
  32. "@deepseek-ai/dsh-api-workspace-controller": "workspace:^",
  33. "@deepseek-ai/dsh-attachment": "workspace:^",
  34. "@deepseek-ai/dsh-client-connection": "workspace:^",
  35. "@deepseek-ai/dsh-client-store": "workspace:^",
  36. "@deepseek-ai/dsh-client-ui-chat": "workspace:^",
  37. "@deepseek-ai/dsh-client-ui-conversation": "workspace:^",
  38. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^",
  39. "@deepseek-ai/dsh-client-ui-session": "workspace:^",
  40. "@deepseek-ai/dsh-client-ui-settings": "workspace:^",
  41. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  42. "@deepseek-ai/dsh-session": "workspace:^",
  43. "@deepseek-ai/dsh-subagent": "workspace:^",
  44. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  45. "@deepseek-ai/cordis": "workspace:^",
  46. "react": "^18.2.0",
  47. "react-dom": "^18.2.0"
  48. },
  49. "devDependencies": {
  50. "@deepseek-ai/dsh-api-session-controller": "workspace:^",
  51. "@deepseek-ai/dsh-api-workspace-controller": "workspace:^",
  52. "@deepseek-ai/dsh-attachment": "workspace:^",
  53. "@deepseek-ai/dsh-client-connection": "workspace:^",
  54. "@deepseek-ai/dsh-client-store": "workspace:^",
  55. "@deepseek-ai/dsh-client-ui-chat": "workspace:^",
  56. "@deepseek-ai/dsh-client-ui-conversation": "workspace:^",
  57. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^",
  58. "@deepseek-ai/dsh-client-ui-session": "workspace:^",
  59. "@deepseek-ai/dsh-client-ui-settings": "workspace:^",
  60. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  61. "@deepseek-ai/dsh-session": "workspace:^",
  62. "@deepseek-ai/dsh-subagent": "workspace:^",
  63. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  64. "@types/react": "~18.3.1",
  65. "@types/react-dom": "~18.3.0",
  66. "@deepseek-ai/cordis": "workspace:^",
  67. "react": "^18.2.0",
  68. "react-dom": "^18.2.0"
  69. },
  70. "files": [
  71. "lib/index.js",
  72. "lib/types/**/*.d.ts"
  73. ]
  74. }