package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "@deepseek-ai/dsh-client-test-runtime",
  3. "description": "jsdom slot test runtime: real Cordis Context + SlotsService + web-react renderer with test-owned session/workspace doubles for feature specs",
  4. "version": "0.0.1",
  5. "private": true,
  6. "type": "module",
  7. "main": "lib/index.js",
  8. "types": "lib/types/index.d.ts",
  9. "exports": {
  10. ".": {
  11. "types": "./lib/types/index.d.ts",
  12. "default": "./lib/index.js"
  13. },
  14. "./invariant": {
  15. "types": "./lib/types/invariant.d.ts",
  16. "default": "./lib/invariant.js"
  17. },
  18. "./src/*": "./src/*",
  19. "./package.json": "./package.json"
  20. },
  21. "license": "BSD-3-Clause",
  22. "dependencies": {
  23. "@testing-library/dom": "^10.4.1",
  24. "@testing-library/react": "^16.3.2",
  25. "vitest": "^4.1.8"
  26. },
  27. "peerDependencies": {
  28. "@deepseek-ai/dsh-client-runtime": "^0.0.1",
  29. "@deepseek-ai/dsh-client-ui-slots": "^0.0.1",
  30. "@deepseek-ai/dsh-client-web-react": "^0.0.1",
  31. "@deepseek-ai/dsh-host-apiproxy": "^0.0.1",
  32. "@deepseek-ai/dsh-invariants": "^0.0.1",
  33. "cordis": "^4.0.0-rc.7",
  34. "react": "^18.2.0",
  35. "react-dom": "^18.2.0"
  36. },
  37. "devDependencies": {
  38. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  39. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  40. "@deepseek-ai/dsh-client-web-react": "workspace:^",
  41. "@deepseek-ai/dsh-host-apiproxy": "workspace:^",
  42. "@deepseek-ai/dsh-invariants": "workspace:^",
  43. "@types/react": "~18.3.1",
  44. "@types/react-dom": "~18.3.0",
  45. "cordis": "^4.0.0-rc.7",
  46. "react": "^18.2.0",
  47. "react-dom": "^18.2.0"
  48. },
  49. "files": [
  50. "lib/index.js",
  51. "lib/invariant.js",
  52. "lib/types/**/*.d.ts"
  53. ]
  54. }