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-invariants": "^0.0.1",
  32. "cordis": "^4.0.0-rc.7",
  33. "react": "^18.2.0",
  34. "react-dom": "^18.2.0"
  35. },
  36. "devDependencies": {
  37. "@deepseek-ai/dsh-client-runtime": "workspace:^",
  38. "@deepseek-ai/dsh-client-ui-slots": "workspace:^",
  39. "@deepseek-ai/dsh-client-web-react": "workspace:^",
  40. "@deepseek-ai/dsh-invariants": "workspace:^",
  41. "@types/react": "~18.3.1",
  42. "@types/react-dom": "~18.3.0",
  43. "cordis": "^4.0.0-rc.7",
  44. "react": "^18.2.0",
  45. "react-dom": "^18.2.0"
  46. },
  47. "files": [
  48. "lib/index.js",
  49. "lib/invariant.js",
  50. "lib/types/**/*.d.ts",
  51. "lib/types/**/*.d.ts.map",
  52. "src"
  53. ]
  54. }