package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@deepseek-ai/dsh-remote-mock",
  3. "description": "Endpoint-named mock for Typert Remote traffic: unary answers and stream scripts per <namespace>/<method>, live stream control, a log, and the Connection carrier face whole-client specs install",
  4. "version": "0.1.5-rc.2",
  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/remote-mock"
  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. "@vitest/spy": "^4.1.8"
  27. },
  28. "peerDependencies": {
  29. "@deepseek-ai/cordis": "workspace:^"
  30. },
  31. "devDependencies": {
  32. "@deepseek-ai/cordis": "workspace:^",
  33. "@deepseek-ai/dsh-api-settings-controller": "workspace:^",
  34. "@deepseek-ai/dsh-client-connection": "workspace:^",
  35. "@deepseek-ai/dsh-typert-protocol": "workspace:^",
  36. "typescript": "^6.0.3"
  37. },
  38. "files": [
  39. "lib/index.js",
  40. "lib/types/**/*.d.ts"
  41. ]
  42. }