package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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.0-rc.7",
  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. "./invariant": {
  22. "types": "./lib/types/invariant.d.ts",
  23. "default": "./lib/invariant.js"
  24. },
  25. "./src/*": "./src/*",
  26. "./package.json": "./package.json"
  27. },
  28. "license": "MIT",
  29. "dependencies": {
  30. "@testing-library/dom": "^10.4.1",
  31. "@testing-library/react": "^16.3.2",
  32. "vitest": "^4.1.8"
  33. },
  34. "peerDependencies": {
  35. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  36. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  37. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^",
  38. "@deepseek-ai/dsh-host-apiproxy": "workspace:^",
  39. "@deepseek-ai/dsh-invariants": "workspace:^",
  40. "@deepseek-ai/cordis": "workspace:^",
  41. "react": "^18.2.0",
  42. "react-dom": "^18.2.0"
  43. },
  44. "devDependencies": {
  45. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  46. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  47. "@deepseek-ai/dsh-client-ui-renderer": "workspace:^",
  48. "@deepseek-ai/dsh-host-apiproxy": "workspace:^",
  49. "@deepseek-ai/dsh-invariants": "workspace:^",
  50. "@types/react": "~18.3.1",
  51. "@types/react-dom": "~18.3.0",
  52. "@deepseek-ai/cordis": "workspace:^",
  53. "react": "^18.2.0",
  54. "react-dom": "^18.2.0"
  55. },
  56. "files": [
  57. "lib/index.js",
  58. "lib/invariant.js",
  59. "lib/types/**/*.d.ts"
  60. ]
  61. }